diff options
author | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2023-03-17 01:51:32 +0000 |
---|---|---|
committer | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2023-03-17 01:55:41 +0000 |
commit | 3b420af385503449ffe0a58fa7d7311a3ff359a1 (patch) | |
tree | ca3e2505124b45dd04b1261c1f7392d55f746054 /tests/wpt/web-platform-tests/css/css-layout-api/style-map-multi.https.html | |
parent | a8da28e55dce8bdd6e8d85e1c9b2ae30bd376510 (diff) | |
download | servo-3b420af385503449ffe0a58fa7d7311a3ff359a1.tar.gz servo-3b420af385503449ffe0a58fa7d7311a3ff359a1.zip |
Update web-platform-tests to revision b'afdce893ed51bc1a7a7ac03b16b5a575caad071a'
Diffstat (limited to 'tests/wpt/web-platform-tests/css/css-layout-api/style-map-multi.https.html')
-rw-r--r-- | tests/wpt/web-platform-tests/css/css-layout-api/style-map-multi.https.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-layout-api/style-map-multi.https.html b/tests/wpt/web-platform-tests/css/css-layout-api/style-map-multi.https.html index 9c49d0f928d..fe6017b80cb 100644 --- a/tests/wpt/web-platform-tests/css/css-layout-api/style-map-multi.https.html +++ b/tests/wpt/web-platform-tests/css/css-layout-api/style-map-multi.https.html @@ -11,7 +11,7 @@ width: 100px; /* Properties under test. */ - --foo: bar; + --foo:bar; margin-left: 2px; } @@ -37,7 +37,7 @@ registerLayout('test', class { async layout(children, edges, constraints, styleMap) { const expected = [ {property: '--bar', value: '[CSSUnparsedValue=]'}, - {property: '--foo', value: '[CSSUnparsedValue= bar]'}, + {property: '--foo', value: '[CSSUnparsedValue=bar]'}, {property: 'empty-cells', value: '[CSSKeywordValue=show]'}, {property: 'margin-left', value: '[CSSUnitValue=2px]'}, ]; |