page-break-important.html (474B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Break: !important flag parsing</title> 5 <link rel="help" href="https://crbug.com/345092067"> 6 <script src="/resources/testharness.js"></script> 7 <script src="/resources/testharnessreport.js"></script> 8 </head> 9 <body> 10 <div id="target" style="page-break-before: always !important">Some text.</div> 11 </body> 12 <script> 13 test(() => { 14 assert_equals(target.style.pageBreakBefore, 'always'); 15 }); 16 </script> 17 </html>