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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/embedded-content/media-elements/interfaces/TextTrack/label.html

Issue 1979363002: Moved web-platform-tests to wpt. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/imported/web-platform-tests/html/semantics/embedded-content/media-elements/interfaces/TextTrack/label.html
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/embedded-content/media-elements/interfaces/TextTrack/label.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/embedded-content/media-elements/interfaces/TextTrack/label.html
deleted file mode 100644
index 00d0cd90d48eccde6e24fc5c316742bd53e7d4c0..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/embedded-content/media-elements/interfaces/TextTrack/label.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!doctype html>
-<title>TextTrack.label</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', 'foo');
- window.track = document.createElement('track');
- track.setAttribute('label', 'bar');
- video.appendChild(track);
- window.t2 = track.track;
-});
-test(function(){
- assert_equals(t1.label, 'foo');
- assert_equals(t2.label, 'bar');
- track.label = 'baz';
- assert_equals(t2.label, 'baz');
- track.removeAttribute('label');
- assert_equals(t2.label, '');
-});
-test(function(){
- track.label = '\u0000a';
- assert_equals(t2.label, '\u0000a');
- track.setAttribute('label', '\u0000b', 'IDL attribute');
- assert_equals(t2.label, '\u0000b', 'content attribute');
-}, document.title+', \\u0000');
-</script>

Powered by Google App Engine
This is Rietveld 408576698