Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-grid/parsing/grid-template-areas-one-cell.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>grid-template-areas must define at least one cell</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<meta name=assert content="grid-template-areas must define at least one cell to be valid.">
<script>
function testValidGta(val) {
test(()=>{
const root = document.children[0];
root.style.gridTemplateAreas = "";
root.style.gridTemplateAreas = val;
assert_not_equals(root.style.gridTemplateAreas, "");
}, `"grid-template-areas: ${val};" should be valid.`);
}
function testInvalidGta(val) {
test(()=>{
const root = document.children[0];
root.style.gridTemplateAreas = "";
root.style.gridTemplateAreas = val;
assert_equals(root.style.gridTemplateAreas, "");
}, `"grid-template-areas: ${val};" should be invalid.`);
}
testValidGta("'a'");
testValidGta("'.'");
testInvalidGta("''");
testInvalidGta("'' ''");
testInvalidGta("'$'");
testInvalidGta("' '");
</script>