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

Side by Side Diff: LayoutTests/accessibility/image-map-with-indirect-area-crash.html

Issue 16647009: Fix crash when assuming that an AREA's parent must be a MAP. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 Test passes if it does not crash.
4 <body id=body>
5 <img usemap=#img height=500 width=613>
6 <map name=img>
7 <time>
8 <area shape=default>
9 <script>
10 if (window.testRunner)
11 testRunner.dumpAsText();
12
13 if (window.accessibilityController) {
14 body.focus();
15 accessibilityController.focusedElement.elementAtPoint(100, 100);
16 }
17 </script>
18 </body>
19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698