Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Unified Diff: LayoutTests/fast/scrolling/scrollable-area-internals-crash.html

Issue 436673003: Fix crash in blink::Internals::numberOfScrollableAreas (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/scrolling/scrollable-area-internals-crash-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | LayoutTests/fast/scrolling/scrollable-area-internals-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698