OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
5 | 5 |
| 6 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 |
| 7 (Please avoid writing new tests using video-test.js) --> |
6 <script src=../video-test.js></script> | 8 <script src=../video-test.js></script> |
7 <script> | 9 <script> |
8 | 10 |
9 function forceGC() | 11 function forceGC() |
10 { | 12 { |
11 if (window.GCController) | 13 if (window.GCController) |
12 return GCController.collectAll(); | 14 return GCController.collectAll(); |
13 | 15 |
14 // Force garbage collection | 16 // Force garbage collection |
15 for (var ndx = 0; ndx < 99000; ndx++) | 17 for (var ndx = 0; ndx < 99000; ndx++) |
16 var str = new String("1234"); | 18 var str = new String("1234"); |
17 } | 19 } |
18 | 20 |
19 function trackLoaded() | 21 function trackLoaded() |
20 { | 22 { |
21 findMediaElement(); | 23 findMediaElement(); |
22 | 24 |
23 consoleWrite("** Validate."); | 25 consoleWrite("** Validate."); |
(...skipping 15 matching lines...) Expand all Loading... |
39 | 41 |
40 </script> | 42 </script> |
41 </head> | 43 </head> |
42 <body> | 44 <body> |
43 <p>Ensure that a TextTrackCue won't be collected if it has a custom prop
erty.</p> | 45 <p>Ensure that a TextTrackCue won't be collected if it has a custom prop
erty.</p> |
44 <video> | 46 <video> |
45 <track src="captions-webvtt/tc013-settings.vtt" kind="captions" onlo
ad="trackLoaded()" default> | 47 <track src="captions-webvtt/tc013-settings.vtt" kind="captions" onlo
ad="trackLoaded()" default> |
46 </video> | 48 </video> |
47 </body> | 49 </body> |
48 </html> | 50 </html> |
OLD | NEW |