OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body> | 3 <body> |
4 Webkit Bug 81265: Crash due to layer tree information not updated when moving ru
n-in children.<br /> | 4 Webkit Bug 81265: Crash due to layer tree information not updated when moving ru
n-in children.<br /> |
5 Test passes if it does not crash. | 5 Test passes if it does not crash. |
6 <style> | 6 <style> |
7 #test0 { | 7 #test0 { |
8 -webkit-perspective: 1; | 8 -webkit-perspective: 1; |
9 } | 9 } |
10 #test1:nth-last-child(3n) { | 10 #test1:nth-last-child(3n) { |
(...skipping 26 matching lines...) Expand all Loading... |
37 document.body.appendChild(test3); | 37 document.body.appendChild(test3); |
38 document.body.insertBefore(document.createElement('div'), test3); | 38 document.body.insertBefore(document.createElement('div'), test3); |
39 document.designMode = 'on'; | 39 document.designMode = 'on'; |
40 document.execCommand('selectall'); | 40 document.execCommand('selectall'); |
41 document.execCommand('removeFormat'); | 41 document.execCommand('removeFormat'); |
42 } | 42 } |
43 </script> | 43 </script> |
44 </body> | 44 </body> |
45 </html> | 45 </html> |
46 | 46 |
OLD | NEW |