OLD | NEW |
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
2 "http://www.w3.org/TR/html4/loose.dtd"> | 2 "http://www.w3.org/TR/html4/loose.dtd"> |
3 | 3 |
4 <html lang="en"> | 4 <html lang="en"> |
5 <head> | 5 <head> |
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | 6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
7 <title>Table-row compositing crash</title> | 7 <title>Table-row compositing crash</title> |
8 <style type="text/css" media="screen"> | 8 <style type="text/css" media="screen"> |
9 | 9 |
10 .content { | 10 .content { |
11 height: 100px; | 11 height: 100px; |
12 width: 100px; | 12 width: 100px; |
13 -webkit-transform: translate3d(0, 0, 0); | 13 transform: translate3d(0, 0, 0); |
14 display: table-row; | 14 display: table-row; |
15 } | 15 } |
16 </style> | 16 </style> |
17 <script type="text/javascript" charset="utf-8"> | 17 <script type="text/javascript" charset="utf-8"> |
18 if (window.testRunner) | 18 if (window.testRunner) |
19 testRunner.dumpAsText(); | 19 testRunner.dumpAsText(); |
20 </script> | 20 </script> |
21 </head> | 21 </head> |
22 <body> | 22 <body> |
23 | 23 |
24 <p><a href="https://bugs.webkit.org/show_bug.cgi?id=27796">https://bugs.webkit
.org/show_bug.cgi?id=27796</a><br>Should not crash.</p> | 24 <p><a href="https://bugs.webkit.org/show_bug.cgi?id=27796">https://bugs.webkit
.org/show_bug.cgi?id=27796</a><br>Should not crash.</p> |
25 <div class="content"> | 25 <div class="content"> |
26 Table row. | 26 Table row. |
27 </div> | 27 </div> |
28 </body> | 28 </body> |
29 </html> | 29 </html> |
OLD | NEW |