Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / table-section-overflow-clip-crash.html
blob3a7cbcb37a08e9f85982e5c782949d7ee3b27aaa
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #test0 {
6 counter-reset: c;
8 #test0::after {
9 content: counter(c);
10 counter-reset: c;
12 #test1::after {
13 content: counter(c);
14 counter-reset: c;
16 #test2 {
17 counter-reset: c;
18 height: 1px;
19 width: 1px;
20 overflow-x: scroll;
21 -webkit-perspective: 1;
23 #test3 {
24 content: counter(c);
25 -webkit-animation-name: a;
26 -webkit-animation-duration: 0.01s;
28 </style>
29 <script>
30 if (window.testRunner) {
31 testRunner.dumpAsText();
32 testRunner.waitUntilDone();
35 function finish() {
36 document.body.innerHTML = "WebKit Bug 87445 - LayoutTableSection::paintCell.<br/>Test passes if it does not crash.";
37 if (window.testRunner)
38 testRunner.notifyDone();
41 onload = function() {
42 test0 = document.createElement('div');
43 test0.setAttribute('id', 'test0');
44 document.body.appendChild(test0);
45 test1 = document.createElement('div');
46 test1.setAttribute('id', 'test1');
47 test0.appendChild(test1);
48 test2 = document.createElement('div');
49 test2.setAttribute('id', 'test2');
50 test1.appendChild(test2);
51 test3 = document.createElement('div');
52 test3.setAttribute('id', 'test3');
53 test2.appendChild(test3);
54 test2.style.display = 'table-footer-group';
55 document.body.offsetTop;
56 setTimeout("finish()", 10);
58 </script>
59 </head>
60 <body>
61 </body>
62 </html>