Skip to content

Commit

Permalink
[cssom] Test the camelcased and webkit-cased attributes are indeed im…
Browse files Browse the repository at this point in the history
…plemented as attributes. (#16900)

WebKit and Blink do not implement these correctly, and thus fail the last bit of
the test.
  • Loading branch information
emilio committed May 20, 2019
1 parent fb60c65 commit 5a62d84
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions css/cssom/cssstyledeclaration-properties.html
@@ -0,0 +1,15 @@
<!doctype html>
<title>CSS Test: CSSStyleDeclaration properties are defined as WebIDL attributes, not using getOwnPropertyNames()</title>
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="author" href="https://mozilla.org" title="Mozilla">
<link rel="help" href="https://drafts.csswg.org/cssom/#dom-cssstyledeclaration-_camel_cased_attribute">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(function() {
let declaration = document.documentElement.style;
assert_true(declaration instanceof CSSStyleDeclaration, "Should be a CSStyleDeclaration");
assert_true("color" in declaration, "Should support the color property");
assert_false(declaration.hasOwnProperty("color"), "shouldn't have an own property for WebIDL attributes");
});
</script>

0 comments on commit 5a62d84

Please sign in to comment.