-
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
63b7bff
commit d106300
Showing
4 changed files
with
26 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
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-video" title="Media with Video" adaptive="false" timeDependent="false"> | ||
<responseDeclaration identifier="RESPONSE" cardinality="single" baseType="integer"/> | ||
<itemBody> | ||
<p>A Media Interaction with some video.</p> | ||
<mediaInteraction responseIdentifier="RESPONSE" autostart="true" minPlays="1" maxPlays="1" loop="false"> | ||
<object type="video/mp4" data="video.mp4" width="640" height="480"/> | ||
</mediaInteraction> | ||
</itemBody> | ||
</assessmentItem> |
1 change: 1 addition & 0 deletions
1
test/samples/rendering/goldilocks/rendered/mediaInteraction-1.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-video" data-title="Media with Video" data-adaptive="false" data-time-dependent="false" class="qti-assessmentItem"><div class="qti-itemBody"><p class="qti-p">A Media Interaction with some video.</p><div data-response-identifier="RESPONSE" data-autostart="true" data-min-plays="1" data-max-plays="1" data-loop="false" class="qti-mediaInteraction"><video width="640" height="480"><source type="video/mp4" src="video.mp4"/></video></div></div></div> |