Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/webvtt/webvtt-api-for-browsers/vttcue-interface/text.html

Issue 2711183003: Import wpt@a7e9c2abcf65b78fcf1c246fec6681c74e1bc352 (Closed)
Patch Set: Update test expectations and baselines. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/external/wpt/webvtt/webvtt-api-for-browsers/vttcue-interface/text.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/webvtt/webvtt-api-for-browsers/vttcue-interface/text.html b/third_party/WebKit/LayoutTests/external/wpt/webvtt/webvtt-api-for-browsers/vttcue-interface/text.html
deleted file mode 100644
index ec317f82851f36f9cff264c6b07e4fb783ae1387..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/external/wpt/webvtt/webvtt-api-for-browsers/vttcue-interface/text.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!doctype html>
-<title>VTTCue.text</title>
-<script src=/resources/testharness.js></script>
-<script src=/resources/testharnessreport.js></script>
-<div id=log></div>
-<script>
-setup(function(){
- window.video = document.createElement('video');
- window.t1 = video.addTextTrack('subtitles');
- document.body.appendChild(video);
-});
-test(function(){
- var c1 = new VTTCue(0, 1, 'text1\r\n\n\u0000');
- assert_equals(c1.text, 'text1\r\n\n\u0000');
- c1.text = c1.text;
- assert_equals(c1.text, 'text1\r\n\n\u0000');
- c1.text = null;
- assert_equals(c1.text, 'null');
-}, document.title+', script-created cue');
-
-var t_parsed = async_test(document.title+', parsed cue');
-t_parsed.step(function(){
- var t = document.createElement('track');
- t.onload = this.step_func(function(){
- var c = t.track.cues;
- assert_equals(c[0].text, '');
- assert_equals(c[1].text, 'test');
- this.done();
- });
- t.onerror = this.step_func(function() {
- assert_unreached('got error event');
- });
- t.src = 'data:text/vtt,'+encodeURIComponent('WEBVTT\n\n00:00:00.000 --> 00:00:00.001\n'+
- '\n\nfoobar\n00:00:00.000 --> 00:00:00.001\ntest');
- t.track.mode = 'showing';
- video.appendChild(t);
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698