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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/keypath.htm

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- Submitted from TestTWF Paris --> 2 <!-- Submitted from TestTWF Paris -->
3 <meta charset="utf-8"> 3 <meta charset="utf-8">
4 <title>Keypath</title> 4 <title>Keypath</title>
5 <link rel=help href="http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html# key-path-construct"> 5 <link rel=help href="http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html# key-path-construct">
6 <link rel=assert title="A key path is a DOMString that defines how to extract a key from a value. A valid key path is either the empty string, a JavaScript iden tifier, or multiple Javascript identifiers separated by periods (ASCII character code 46) [ECMA-262]."> 6 <link rel=assert title="A key path is a DOMString that defines how to extract a key from a value. A valid key path is either the empty string, a JavaScript iden tifier, or multiple Javascript identifiers separated by periods (ASCII character code 46) [ECMA-262].">
7 <script src="../../../resources/testharness.js"></script> 7 <script src="../../../resources/testharness.js"></script>
8 <script src="../../../resources/testharnessreport.js"></script> 8 <script src="../../../resources/testharnessreport.js"></script>
9 <script src="support.js"></script> 9 <script src="support.js"></script>
10 10
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 137
138 loop_array = []; 138 loop_array = [];
139 loop_array.push(loop_array); 139 loop_array.push(loop_array);
140 keypath(loop_array, 140 keypath(loop_array,
141 [ "a", 1, ["k"] ], 141 [ "a", 1, ["k"] ],
142 [ [1], ["a"], [["k"]] ], 142 [ [1], ["a"], [["k"]] ],
143 "array loop -> stringify becomes ['']"); 143 "array loop -> stringify becomes ['']");
144 </script> 144 </script>
145 145
146 <div id=log></div> 146 <div id=log></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698