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

Side by Side Diff: LayoutTests/accessibility/crash-on-accessing-properties-at-initial-state.html

Issue 216343002: Add a test that confirms there's no crash on accessing properties of AccesibilityObject at the init… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: dmazzoni's review Created 6 years, 9 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
« no previous file with comments | « no previous file | LayoutTests/accessibility/crash-on-accessing-properties-at-initial-state-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <script src="../resources/js-test.js"></script>
5 </head>
6 <body id="body">
7 <script>
8
9 description("This tests that there's no crash when accessising any propertie s at the initial state.");
10
11 function enumelateProperties(value) {
12 if (typeof(value) !== 'object')
13 return;
14 for (var key in value)
15 enumelateProperties(value[key]);
16 }
17
18 if (window.accessibilityController)
19 enumelateProperties(window.accessibilityController);
20
21 </script>
22 </body>
23 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/accessibility/crash-on-accessing-properties-at-initial-state-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698