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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/elements/global-attributes/dataset-get.html

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (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/dom/elements/global-attributes/dataset-get.html
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/elements/global-attributes/dataset-get.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/elements/global-attributes/dataset-get.html
deleted file mode 100644
index a9083d044eae67706014a269dbaff6e925260a22..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/elements/global-attributes/dataset-get.html
+++ /dev/null
@@ -1,57 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>Dataset - Get</title>
- <script src="../../../../../../resources/testharness.js"></script>
- <script src="../../../../../../resources/testharnessreport.js"></script>
- </head>
- <body>
- <h1>Dataset - Get</h1>
- <div id="log"></div>
- <script>
- function testGet(attr, expected)
- {
- var d = document.createElement("div");
- d.setAttribute(attr, "value");
- return d.dataset[expected] == "value";
- }
-
- test(function() { assert_true(testGet('data-foo', 'foo')); },
- "Getting element.dataset['foo'] should return the value of element.getAttribute('data-foo')'");
- test(function() { assert_true(testGet('data-foo-bar', 'fooBar')); },
- "Getting element.dataset['fooBar'] should return the value of element.getAttribute('data-foo-bar')'");
- test(function() { assert_true(testGet('data--', '-')); },
- "Getting element.dataset['-'] should return the value of element.getAttribute('data--')'");
- test(function() { assert_true(testGet('data--foo', 'Foo')); },
- "Getting element.dataset['Foo'] should return the value of element.getAttribute('data--foo')'");
- test(function() { assert_true(testGet('data---foo', '-Foo')); },
- "Getting element.dataset['-Foo'] should return the value of element.getAttribute('data---foo')'");
- test(function() { assert_true(testGet('data-Foo', 'foo')); },
- "Getting element.dataset['foo'] should return the value of element.getAttribute('data-Foo')'");
- test(function() { assert_true(testGet('data-', '')); },
- "Getting element.dataset[''] should return the value of element.getAttribute('data-')'");
- test(function() { assert_true(testGet('data-\xE0', '\xE0')); },
- "Getting element.dataset['\xE0'] should return the value of element.getAttribute('data-\xE0')'");
- test(function() { assert_true(testGet('data-to-string', 'toString')); },
- "Getting element.dataset['toString'] should return the value of element.getAttribute('data-to-string')'");
-
- function matchesNothingInDataset(attr)
- {
- var d = document.createElement("div");
- d.setAttribute(attr, "value");
-
- if (!d.dataset)
- return false;
-
- var count = 0;
- for (var item in d.dataset)
- count++;
- return count == 0;
- }
-
- test(function() { assert_true(matchesNothingInDataset('dataFoo')); },
- "Tests that an attribute named dataFoo does not make an entry in the dataset DOMStringMap.");
-
- </script>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698