-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Additional tests for MediaInteraction.
- Loading branch information
=
committed
Sep 26, 2016
1 parent
d106300
commit 6165ec2
Showing
3 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<assessmentItem xmlns="http://www.imsglobal.org/xsd/imsqti_v2p1" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.imsglobal.org/xsd/imsqti_v2p1 http://www.imsglobal.org/xsd/qti/qtiv2p1/imsqti_v2p1.xsd" | ||
identifier="media-image" title="Media with Image" adaptive="false" timeDependent="false"> | ||
<responseDeclaration identifier="RESPONSE" cardinality="single" baseType="integer"/> | ||
<itemBody> | ||
<p>A Media Interaction with some images.</p> | ||
<mediaInteraction responseIdentifier="RESPONSE" autostart="true" minPlays="1" maxPlays="1" loop="false"> | ||
<object type="image/jpeg" data="image.jpg" width="640" height="480"/> | ||
</mediaInteraction> | ||
</itemBody> | ||
</assessmentItem> |
1 change: 1 addition & 0 deletions
1
test/samples/rendering/goldilocks/rendered/mediaInteraction-2.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<div data-identifier="media-image" data-title="Media with Image" data-adaptive="false" data-time-dependent="false" class="qti-assessmentItem"><div class="qti-itemBody"><p class="qti-p">A Media Interaction with some images.</p><div data-response-identifier="RESPONSE" data-autostart="true" data-min-plays="1" data-max-plays="1" data-loop="false" class="qti-mediaInteraction"><img src="image.jpg" width="640" height="480"/></div></div></div> |