Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Side by Side Diff: LayoutTests/fast/table/table-row-compositing-repaint-crash.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698