| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Bug 92497 - [CSS Regions] Region overset property is not properly
computed when there is a region break</title> | 4 <title>Bug 92497 - [CSS Regions] Region overset property is not properly
computed when there is a region break</title> |
| 5 <style type="text/css"> | 5 <style type="text/css"> |
| 6 | 6 |
| 7 .columns { | 7 .columns { |
| 8 -webkit-column-count:2; | 8 -webkit-column-count:2; |
| 9 width:250px; | 9 width:250px; |
| 10 } | 10 } |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 document.body.className = document.querySelector(".columns p:nth-chi
ld(2)").offsetTop == document.querySelector(".columns p:first-child").offsetTop
? "pass" : "fail"; | 30 document.body.className = document.querySelector(".columns p:nth-chi
ld(2)").offsetTop == document.querySelector(".columns p:first-child").offsetTop
? "pass" : "fail"; |
| 31 </script> | 31 </script> |
| 32 | 32 |
| 33 <div id="pass">PASS</div> | 33 <div id="pass">PASS</div> |
| 34 <div id="fail">FAIL</div> | 34 <div id="fail">FAIL</div> |
| 35 | 35 |
| 36 <p><a href="https://bugs.webkit.org/show_bug.cgi?id=92497">Bug 92497</a>
- [CSS Regions] Region overset property is not properly computed when there is
a region break</p> | 36 <p><a href="https://bugs.webkit.org/show_bug.cgi?id=92497">Bug 92497</a>
- [CSS Regions] Region overset property is not properly computed when there is
a region break</p> |
| 37 | 37 |
| 38 </body> | 38 </body> |
| 39 </html> | 39 </html> |
| OLD | NEW |