mirror of
https://github.com/servo/servo
synced 2026-04-27 09:57:23 +02:00
Fix CSSStyleDeclaration's item() to provide properties instead of values (#31299)
For example,
style.cssText = "margin: 1px 2px 3px 4px";
[...style];
will now be
["margin-top", "margin-right", "margin-bottom", "margin-left"]
instead of
["1px", "2px", "3px", "4px"]
This commit is contained in:
@@ -1,4 +0,0 @@
|
||||
[cssstyledeclaration-custom-properties.html]
|
||||
[Custom properties are included in computed style]
|
||||
expected: FAIL
|
||||
|
||||
Reference in New Issue
Block a user