grid-template-important.html (541B)
1 <!DOCTYPE html> 2 <title>CSS Grid Layout Test: grid-template followed by !important</title> 3 <link rel="help" href="https://drafts.csswg.org/css-grid-1"> 4 <script src="/resources/testharness.js"></script> 5 <script src="/resources/testharnessreport.js"></script> 6 <style> 7 #div { 8 grid-template: "test" max-content / max-content !important; 9 } 10 </style> 11 <div id=div></div> 12 <script> 13 test(() => { 14 assert_equals(getComputedStyle(div).gridTemplate, '"test" max-content / max-content'); 15 }, 'grid-template followed by !important'); 16 </script>