Skip to content

Commit d347e45

Browse files
committed
Bug 1859959 [wpt PR 42623] - Rewrite property-cascade.html with getComputedStyle(), a=testonly
Automatic update from web-platform-tests Rewrite property-cascade.html with getComputedStyle() (#42623) Fixes web-platform-tests/interop#588 -- wpt-commits: 0d569c25cc1d7265e8eb92ead6049600edef4a1b wpt-pr: 42623 UltraBlame original commit: 356d689d5441d068224f52a979715941a3172c61
1 parent e9f8c43 commit d347e45

File tree

1 file changed

+6
-36
lines changed

1 file changed

+6
-36
lines changed

testing/web-platform/tests/css/css-properties-values-api/property-cascade.html

Lines changed: 6 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -231,23 +231,13 @@
231231
.
232232
assert_equals
233233
(
234-
inner
235-
.
236-
computedStyleMap
234+
getComputedStyle
237235
(
236+
inner
238237
)
239238
.
240-
get
241-
(
242-
'
243239
color
244240
'
245-
)
246-
.
247-
toString
248-
(
249-
)
250-
'
251241
rgb
252242
(
253243
1
@@ -345,23 +335,13 @@
345335
.
346336
assert_equals
347337
(
348-
inner
349-
.
350-
computedStyleMap
338+
getComputedStyle
351339
(
340+
inner
352341
)
353342
.
354-
get
355-
(
356-
'
357343
color
358344
'
359-
)
360-
.
361-
toString
362-
(
363-
)
364-
'
365345
rgb
366346
(
367347
3
@@ -499,23 +479,13 @@
499479
;
500480
assert_equals
501481
(
502-
element
503-
.
504-
computedStyleMap
482+
getComputedStyle
505483
(
484+
element
506485
)
507486
.
508-
get
509-
(
510-
'
511487
color
512488
'
513-
)
514-
.
515-
toString
516-
(
517-
)
518-
'
519489
rgb
520490
(
521491
4

0 commit comments

Comments
 (0)