Skip to content

Commit

Permalink
Bug 1464376 [wpt PR 11163] - [cssom] Add a few more historical tests.…
Browse files Browse the repository at this point in the history
…, a=testonly

Automatic update from web-platform-tests[cssom] Add a few more historical tests. (#11163)

Adds tests for getPropertyCSSValue stuff, and also for
w3c/csswg-drafts#2680, while I was here.
--

wpt-commits: 8111e49db7ed5ced2d44e974fcedaba6cd86e4a7
wpt-pr: 11163

UltraBlame original commit: 24e14dfd9d8d5a7092cb1266e76cdd872ae51d70
  • Loading branch information
marco-c committed Oct 3, 2019
1 parent d220b52 commit b9a2e8b
Show file tree
Hide file tree
Showing 2 changed files with 102 additions and 1 deletion.
2 changes: 1 addition & 1 deletion testing/web-platform/meta/MANIFEST.json
Expand Up @@ -3572070,7 +3572070,7 @@ html
:
[
"
89c506ea58f2ad38eb9ecc1e5f422b81a45b07fa
33372724bd11f4816a533e2656bbc993c922d987
"
"
testharness
Expand Down
101 changes: 101 additions & 0 deletions testing/web-platform/tests/css/cssom/historical.html
Expand Up @@ -174,6 +174,107 @@
;
[
"
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
"
"
Expand Down

0 comments on commit b9a2e8b

Please sign in to comment.