OLD | NEW |
(Empty) | |
| 1 <html> |
| 2 <head> |
| 3 <script src="../../http/tests/inspector/inspector-test.js"></script> |
| 4 <script src="../../http/tests/inspector/layers-test.js"></script> |
| 5 <script> |
| 6 function test() |
| 7 { |
| 8 function onGotLayers() |
| 9 { |
| 10 InspectorTest.addResult("Scroll rectangles"); |
| 11 InspectorTest.dumpViewScrollRects(); |
| 12 |
| 13 InspectorTest.completeTest(); |
| 14 } |
| 15 |
| 16 WebInspector.inspectorView.showPanel("layers"); |
| 17 InspectorTest.requestLayers(onGotLayers); |
| 18 } |
| 19 </script> |
| 20 </head> |
| 21 <body onload="runTest()"> |
| 22 <div style="-webkit-transform: translateZ(100px);" onmousewheel=""></div> |
| 23 <div id="touchable" style="-webkit-transform:translateZ(100px);height:20px;width
:200px;overflow:scroll;"> |
| 24 Touch me!<br> |
| 25 </div> |
| 26 <script type="text/javascript"> |
| 27 var element = document.getElementById('touchable'); |
| 28 element.addEventListener("touchstart", function(evt) {}, false); |
| 29 </script> |
| 30 </body> |
| 31 </html> |
OLD | NEW |