| Index: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_getProperties.html
|
| diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_getProperties.html b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_getProperties.html
|
| index fb7226660ca2f509e1b90ac7825cb5dc8bb2c9d9..5c12a4b19503043b20c5abbd07558aa52e44531d 100644
|
| --- a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_getProperties.html
|
| +++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_getProperties.html
|
| @@ -62,4 +62,14 @@ test(function() {
|
| assert_array_equals(testElement.styleMap.getProperties(), ['@apply']);
|
| }, "getProperties returns only one @apply when multiple things are applied");
|
|
|
| +
|
| +test(function() {
|
| + testElement.style.cssText = "@apply --foo; @apply --bar;";
|
| + testElement.style.setProperty('--my-custom-property', '5px');
|
| +
|
| + testElement.style['all'] = 'initial';
|
| + testElement.cloneNode();
|
| + console.log(testElement.styleMap.getProperties());
|
| +}, "serialize without crashing");
|
| +
|
| </script>
|
|
|