gap-decorations-rule-initial-value-crash.html (517B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Gap Decoration: renderer doesn't crash when rule values are set to initial</title> 6 <link rel="help" href="https://drafts.csswg.org/css-gaps-1"> 7 <link rel="author" title="Sam Davis Omekara Jr." href="mailto:samomekarajr@microsoft.com"> 8 </head> 9 <body> 10 <div id="target" style="column-rule-width: initial; column-rule-color: initial; column-rule-style: solid;"></div> 11 </body> 12 <script> 13 document.getElementById("target").style.columnRule; 14 </script> 15 </html>