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

Side by Side Diff: chrome/test/data/dom_checker/dom_checker.html

Issue 56154: Move json2.js to a common location. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 8 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 | « chrome/test/data/dom_checker/README.chromium ('k') | chrome/test/data/dom_checker/json2.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <!-- 2 <!--
3 3
4 DOM checker - browser domain context separation validator 4 DOM checker - browser domain context separation validator
5 ---------------------------------------------------------- 5 ----------------------------------------------------------
6 6
7 Authors: Michal Zalewski <lcamtuf@google.com> 7 Authors: Michal Zalewski <lcamtuf@google.com>
8 Filipe Almeida <filipe@google.com> 8 Filipe Almeida <filipe@google.com>
9 9
10 Copyright 2008 by Google Inc. All Rights Reserved. 10 Copyright 2008 by Google Inc. All Rights Reserved.
11 11
12 Licensed under the Apache License, Version 2.0 (the "License"); 12 Licensed under the Apache License, Version 2.0 (the "License");
13 you may not use this file except in compliance with the License. 13 you may not use this file except in compliance with the License.
14 You may obtain a copy of the License at 14 You may obtain a copy of the License at
15 15
16 http://www.apache.org/licenses/LICENSE-2.0 16 http://www.apache.org/licenses/LICENSE-2.0
17 17
18 Unless required by applicable law or agreed to in writing, software 18 Unless required by applicable law or agreed to in writing, software
19 distributed under the License is distributed on an "AS IS" BASIS, 19 distributed under the License is distributed on an "AS IS" BASIS,
20 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 20 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 See the License for the specific language governing permissions and 21 See the License for the specific language governing permissions and
22 limitations under the License. 22 limitations under the License.
23 23
24 --> 24 -->
25 25
26 <head> 26 <head>
27 <title>DOM checker - browser domain context separation validator</title> 27 <title>DOM checker - browser domain context separation validator</title>
28 28
29 <script src="../json2.js"></script>
30 <script src="automation.js"></script>
31
29 <script src="dom_config.js"></script> 32 <script src="dom_config.js"></script>
30 <script src="json2.js"></script>
31 <script src="automation.js"></script>
32 33
33 <script> 34 <script>
34 35
35 var option_long = false; // Run more timing tests? 36 var option_long = false; // Run more timing tests?
36 var option_badonly = false; // Report failed tests only? 37 var option_badonly = false; // Report failed tests only?
37 var running_local = false; // Running from file:///? 38 var running_local = false; // Running from file:///?
38 39
39 var bad = 0; // Number of failed tests 40 var bad = 0; // Number of failed tests
40 var now_running = 0; // Run-level nesting counter 41 var now_running = 0; // Run-level nesting counter
41 var target_page; // Target page location 42 var target_page; // Target page location
(...skipping 1201 matching lines...) Expand 10 before | Expand all | Expand 10 after
1243 <!-- Test frame used for file:/// URLs --> 1244 <!-- Test frame used for file:/// URLs -->
1244 <iframe height=1 width=1 id=ef name=ef onload="ef_load_ok()" style="border-width : 0px"> 1245 <iframe height=1 width=1 id=ef name=ef onload="ef_load_ok()" style="border-width : 0px">
1245 </iframe> 1246 </iframe>
1246 1247
1247 <!-- IPC frame for write validation --> 1248 <!-- IPC frame for write validation -->
1248 <iframe id=ipc_read name=ipc_read src="dom_blank_page.html#NONE" height=1 width= 1 style="border-width: 0px"> 1249 <iframe id=ipc_read name=ipc_read src="dom_blank_page.html#NONE" height=1 width= 1 style="border-width: 0px">
1249 </iframe> 1250 </iframe>
1250 1251
1251 </body> 1252 </body>
1252 </html> 1253 </html>
OLDNEW
« no previous file with comments | « chrome/test/data/dom_checker/README.chromium ('k') | chrome/test/data/dom_checker/json2.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698