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

Side by Side Diff: third_party/WebKit/LayoutTests/accessibility/duplicate-axlayoutobject-crash.html

Issue 2536993002: Remove support for the keygen tag (Closed)
Patch Set: Rebased Created 3 years, 12 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
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <script src="../resources/js-test.js"></script>
5 </head>
6 <body>
7
8 <label>
9 <summary>
10 <ul style="display: table-header-group">
11 <keygen></keygen>
12 </ul>
13 </summary>
14 </label>
15
16 <p id="description"></p>
17
18 <script>
19 description("Ensures that it's not possible to have two AXLayoutObjects that point to the same renderer, if the initialization of an AXLayoutObject results in another object with the same renderer being created before AXObjectCache has added that mapping to its hash.");
20 if (window.accessibilityController)
21 accessibilityController.accessibleElementById("dummy");
22 </script>
23
24
25 </body>
26 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698