| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html id='root'> | 2 <html id='root'> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 div { | 5 div { |
| 6 height: 50px; | 6 height: 50px; |
| 7 width: 50px; | 7 width: 50px; |
| 8 padding: 3px; | 8 padding: 3px; |
| 9 border-style: solid; | 9 border-style: solid; |
| 10 border-color: black; | 10 border-color: black; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 pre.appendChild(text); | 58 pre.appendChild(text); |
| 59 } | 59 } |
| 60 } | 60 } |
| 61 } | 61 } |
| 62 | 62 |
| 63 window.onload = doTest; | 63 window.onload = doTest; |
| 64 </script> | 64 </script> |
| 65 </head> | 65 </head> |
| 66 <body> | 66 <body> |
| 67 <div id='fixed' style='position: fixed'></div> | 67 <div id='fixed' style='position: fixed'></div> |
| 68 <div id='container' style='height: 350px; width: 500px; -webkit-transfor
m:rotate(15deg); position:relative; top:150px; left: 150px'> | 68 <div id='container' style='height: 350px; width: 500px; transform:rotate
(15deg); position:relative; top:150px; left: 150px'> |
| 69 <div id='overflow-child' style='overflow:scroll'></div> | 69 <div id='overflow-child' style='overflow:scroll'></div> |
| 70 <div id='abs-descendant'></div> | 70 <div id='abs-descendant'></div> |
| 71 <div id='fixed-descendant'></div> | 71 <div id='fixed-descendant'></div> |
| 72 <div class='filler'></div> | 72 <div class='filler'></div> |
| 73 </div> | 73 </div> |
| 74 | 74 |
| 75 <pre id='console'></pre> | 75 <pre id='console'></pre> |
| 76 <div id='viewportFiller' class='filler'></div> | 76 <div id='viewportFiller' class='filler'></div> |
| 77 </body> | 77 </body> |
| 78 </html> | 78 </html> |
| OLD | NEW |