| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <body> | 3 <body> |
| 4 <style> | 4 <style> |
| 5 #test1 { | 5 #test1 { |
| 6 display: -webkit-flexbox; | 6 display: -webkit-flexbox; |
| 7 } | 7 } |
| 8 #test1::before { | 8 #test1::before { |
| 9 content: "A"; | 9 content: "A"; |
| 10 } | 10 } |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 test2.style.display = '-webkit-flexbox'; | 37 test2.style.display = '-webkit-flexbox'; |
| 38 | 38 |
| 39 document.body.offsetTop; | 39 document.body.offsetTop; |
| 40 document.body.innerHTML = "PASS"; | 40 document.body.innerHTML = "PASS"; |
| 41 } | 41 } |
| 42 | 42 |
| 43 window.onload = runTest; | 43 window.onload = runTest; |
| 44 </script> | 44 </script> |
| 45 </body> | 45 </body> |
| 46 </html> | 46 </html> |
| OLD | NEW |