| Index: LayoutTests/fast/css-grid-layout/grid-template-areas-get-set.html
|
| diff --git a/LayoutTests/fast/css-grid-layout/grid-template-areas-get-set.html b/LayoutTests/fast/css-grid-layout/grid-template-areas-get-set.html
|
| index 64c702e7f14c44766a5bbbcff33391a43a9c1c3f..ab89756add5118fb62e4ad91ce0600d49d0ee4e1 100644
|
| --- a/LayoutTests/fast/css-grid-layout/grid-template-areas-get-set.html
|
| +++ b/LayoutTests/fast/css-grid-layout/grid-template-areas-get-set.html
|
| @@ -91,6 +91,11 @@
|
| element.style.gridTemplateAreas = "'foobar'";
|
| shouldBeEqualToString("window.getComputedStyle(element).getPropertyValue('grid-template-areas')", '"foobar"')
|
| element.style.gridTemplateAreas = "initial";
|
| + shouldBeEqualToString("window.getComputedStyle(element).getPropertyValue('grid-template-areas')", 'none');
|
| + element.style.gridTemplateAreas = "'foobar'";
|
| + shouldBeEqualToString("window.getComputedStyle(element).getPropertyValue('grid-template-areas')", '"foobar"')
|
| + element.style.gridTemplateAreas = "none";
|
| + shouldBeEqualToString("window.getComputedStyle(element).getPropertyValue('grid-template-areas')", 'none');
|
| document.body.removeChild(element);
|
|
|
| debug("Test grid-template-areas: inherit");
|
|
|