author | Emilio Cobos Álvarez <emilio@crisal.io> |
Wed, 06 Jun 2018 15:01:01 +0000 | |
changeset 422162 | 24e14dfd9d8d5a7092cb1266e76cdd872ae51d70 |
parent 422161 | a06c3b14e999f2ac77a0d801aa449dcf6e135e0a |
child 422163 | 69de9513368b9da0c3f36d55d19bb4bf9a095959 |
push id | 34122 |
push user | ebalazs@mozilla.com |
push date | Mon, 11 Jun 2018 09:37:00 +0000 |
treeherder | mozilla-central@9941eb8c3b29 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | testonly |
bugs | 1464376, 11163 |
milestone | 62.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
testing/web-platform/meta/MANIFEST.json | file | annotate | diff | comparison | revisions | |
testing/web-platform/tests/css/cssom/historical.html | file | annotate | diff | comparison | revisions |
--- a/testing/web-platform/meta/MANIFEST.json +++ b/testing/web-platform/meta/MANIFEST.json @@ -540877,17 +540877,17 @@ "3f379487727d9730de9e3569b26632c35d602d9d", "testharness" ], "css/cssom/getComputedStyle-pseudo.html": [ "d3ef09fb6092078562f8923879b9ece97938df47", "testharness" ], "css/cssom/historical.html": [ - "89c506ea58f2ad38eb9ecc1e5f422b81a45b07fa", + "33372724bd11f4816a533e2656bbc993c922d987", "testharness" ], "css/cssom/inline-style-001.html": [ "4c58b6153eabe796749dcaf181e03d7dce2c9c07", "testharness" ], "css/cssom/insertRule-charset-no-index.html": [ "2be98274fe292089f381d216dc415ddc812a105f",
--- a/testing/web-platform/tests/css/cssom/historical.html +++ b/testing/web-platform/tests/css/cssom/historical.html @@ -18,16 +18,38 @@ assert_false(name in document); var doc = document.implementation.createDocument(null, null, null); assert_false(name in doc); }, "Historical Document member: " + name); }); [ + "Rect", + "RGBColor", + "CSSValue", + "CSSPrimitiveValue", + "CSSValueList", +].forEach(function(name) { + test(function() { + assert_false(name in window); + }, "Historical interface: " + name); +}); + +[ + "getPropertyCSSValue", + "setPropertyValue", + "setPropertyPriority", +].forEach(function(name) { + test(function() { + assert_false(name in document.body.style); + }, "Historical CSSStyleDeclaration member: " + name); +}); + +[ "cascadedStyle", "defaultStyle", "rawComputedStyle", "usedStyle", ].forEach(function(name) { test(function() { assert_false(name in document.body); assert_false(name in document.createElement("test"));