mirror of
https://github.com/servo/servo.git
synced 2025-08-31 01:58:23 +01:00
Update web-platform-tests to revision 58eb04cecbbec2e18531ab440225e38944a9c444
This commit is contained in:
parent
25e8bf69e6
commit
665817d2a6
35333 changed files with 1818077 additions and 16036 deletions
32
tests/wpt/web-platform-tests/webvtt/api/VTTCue/position.html
Normal file
32
tests/wpt/web-platform-tests/webvtt/api/VTTCue/position.html
Normal file
|
@ -0,0 +1,32 @@
|
|||
<!doctype html>
|
||||
<title>VTTCue.position</title>
|
||||
<link rel="help" href="https://w3c.github.io/webvtt/#dom-vttcue-position">
|
||||
<script src=/resources/testharness.js></script>
|
||||
<script src=/resources/testharnessreport.js></script>
|
||||
<div id=log></div>
|
||||
<script>
|
||||
test(function(){
|
||||
var cue = new VTTCue(0, 1, 'text');
|
||||
assert_true('position' in cue, 'position is not supported');
|
||||
|
||||
cue.position = 'auto';
|
||||
assert_equals(cue.position, 'auto');
|
||||
|
||||
for (i = 0; i <= 100; i++) {
|
||||
cue.position = i;
|
||||
assert_equals(cue.position, i);
|
||||
}
|
||||
|
||||
[-1, -100, -101, 101, 200, 201].forEach(function(invalid) {
|
||||
assert_throws('IndexSizeError', function() {
|
||||
cue.position = invalid;
|
||||
});
|
||||
});
|
||||
|
||||
cue.position = 1.5;
|
||||
assert_equals(cue.position, 1.5);
|
||||
|
||||
cue.position = 'auto';
|
||||
assert_equals(cue.position, 'auto');
|
||||
}, document.title+', script-created cue');
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue