Index: LayoutTests/fast/scrolling/scrollable-area-internals-crash.html |
diff --git a/LayoutTests/fast/scrolling/scrollable-area-internals-crash.html b/LayoutTests/fast/scrolling/scrollable-area-internals-crash.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..aef3e9030622b6aa71d6c9312e6066ab12023f47 |
--- /dev/null |
+++ b/LayoutTests/fast/scrolling/scrollable-area-internals-crash.html |
@@ -0,0 +1,17 @@ |
+<body onload="runTest();"> |
tkent
2014/08/01 00:22:38
Please remove this file.
We don't need a test for
|
+ <img height="100" usemap="#map" width="100">PASS</img> |
+ <map name="map"> |
+ <area coords="0,0,0,100,100,100,100,0" href="javascript:document.getElementById('result').innerHTML='area clicked'" id="result"> |
+ </map> |
+ <script> |
+ function runTest() { |
+ if (window.testRunner) { |
+ testRunner.dumpAsText(); |
+ eventSender.mouseMoveTo(50, 50); |
+ eventSender.mouseDown(); |
+ eventSender.mouseUp(); |
+ } |
+ internals.numberOfScrollableAreas(document); |
+ } |
+ </script> |
+</body> |