Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / multiple-captions-crash4-expected.html
bloba25518a2031fe4369bb10cfb2916a0fbed53de6c
1 <html>
2 <head>
3 <style>
4 .c10 { display: table-caption; width: 65536px; }
5 .c12 > .c7 { visibility: hidden; float: left; }
6 .c13:nth-of-type(2n) { color: Yellow; }
7 .c15:nth-last-of-type(-n+6) { display: -webkit-box; padding-left: 65536px; }
8 </style>
10 <script>
11 if (window.testRunner) {
12 testRunner.waitUntilDone();
15 var nodes = Array();
17 function tryToCrash()
19 try { nodes[84].setAttribute('class', 'c18'); } catch(e) {};
20 setTimeout('testRunner.notifyDone();',1000);
23 function boom() {
24 try { nodes[8] = document.createElement('select'); } catch(e) {}
25 try { nodes[8].setAttribute('class', 'c7'); } catch(e) {}
26 try { nodes[16] = document.createElement('abbr'); } catch(e) {}
27 try { nodes[84] = document.createElement('li'); } catch(e) {}
28 try { document.documentElement.appendChild(nodes[84]); } catch(e) {}
29 try { nodes[91] = document.createElement('caption'); } catch(e) {}
30 try { nodes[91].setAttribute('class', 'c12'); } catch(e) {}
31 try { document.documentElement.appendChild(nodes[91]); } catch(e) {}
32 try { nodes[92] = document.createElement('details'); } catch(e) {}
33 try { nodes[92].setAttribute('class', 'c10'); } catch(e) {}
34 try { document.documentElement.appendChild(nodes[92]); } catch(e) {}
35 try { nodes[94] = document.createElement('ruby'); } catch(e) {}
36 try { nodes[94].setAttribute('class', 'c13'); } catch(e) {}
37 try { document.documentElement.appendChild(nodes[94]); } catch(e) {}
39 setTimeout("try { nodes[8].setAttribute('class', 'c15'); } catch(e) {}", 616);
40 setTimeout('try { nodes[91].appendChild(nodes[8]); } catch(e) {}', 502);
41 setTimeout('try { nodes[92].appendChild(nodes[16]); } catch(e) {}', 461);
42 setTimeout('tryToCrash();', 519);
44 </script>
45 </head>
46 <body onLoad="setTimeout('boom();',0)">
47 Passes if it doesn't crash!
48 </body>
49 </html>