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

Side by Side Diff: third_party/WebKit/LayoutTests/tables/table-section-overflow-clip-crash.html

Issue 2513413007: CSS Animations: Reduce usage of webkit prefix in layout tests (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « third_party/WebKit/LayoutTests/paint/invalidation/svg/invalid-clip-path-crash.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 #test0 { 5 #test0 {
6 counter-reset: c; 6 counter-reset: c;
7 } 7 }
8 #test0::after { 8 #test0::after {
9 content: counter(c); 9 content: counter(c);
10 counter-reset: c; 10 counter-reset: c;
11 } 11 }
12 #test1::after { 12 #test1::after {
13 content: counter(c); 13 content: counter(c);
14 counter-reset: c; 14 counter-reset: c;
15 } 15 }
16 #test2 { 16 #test2 {
17 counter-reset: c; 17 counter-reset: c;
18 height: 1px; 18 height: 1px;
19 width: 1px; 19 width: 1px;
20 overflow-x: scroll; 20 overflow-x: scroll;
21 -webkit-perspective: 1; 21 perspective: 1;
22 } 22 }
23 #test3 { 23 #test3 {
24 content: counter(c); 24 content: counter(c);
25 -webkit-animation-name: a; 25 animation-name: a;
26 -webkit-animation-duration: 0.01s; 26 animation-duration: 0.01s;
27 } 27 }
28 </style> 28 </style>
29 <script> 29 <script>
30 if (window.testRunner) { 30 if (window.testRunner) {
31 testRunner.dumpAsText(); 31 testRunner.dumpAsText();
32 testRunner.waitUntilDone(); 32 testRunner.waitUntilDone();
33 } 33 }
34 34
35 function finish() { 35 function finish() {
36 document.body.innerHTML = "WebKit Bug 87445 - LayoutTableSection::paintCell. <br/>Test passes if it does not crash."; 36 document.body.innerHTML = "WebKit Bug 87445 - LayoutTableSection::paintCell. <br/>Test passes if it does not crash.";
(...skipping 16 matching lines...) Expand all
53 test2.appendChild(test3); 53 test2.appendChild(test3);
54 test2.style.display = 'table-footer-group'; 54 test2.style.display = 'table-footer-group';
55 document.body.offsetTop; 55 document.body.offsetTop;
56 setTimeout("finish()", 10); 56 setTimeout("finish()", 10);
57 } 57 }
58 </script> 58 </script>
59 </head> 59 </head>
60 <body> 60 <body>
61 </body> 61 </body>
62 </html> 62 </html>
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/paint/invalidation/svg/invalid-clip-path-crash.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698