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

Side by Side Diff: content/test/data/dom_storage/verify_data.html

Issue 2693203004: Fix spelling in DOM Storage test. (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <meta charset=utf-8> 2 <meta charset=utf-8>
3 <script src="common.js"></script> 3 <script src="common.js"></script>
4 <script> 4 <script>
5 function test() { 5 function test() {
6 let val = window.localStorage['foo']; 6 let val = window.localStorage['foo'];
7 if (val !== 'bar') 7 if (val !== 'bar')
8 fail('Read incorrect value from localStorage. Excpected "bar", got "' + val + '"'); 8 fail('Read incorrect value from localStorage. Expected "bar", got "' + val + '"');
9 else 9 else
10 done(); 10 done();
11 } 11 }
12 </script> 12 </script>
13 <body onload="setTimeout(test, 0)"> 13 <body onload="setTimeout(test, 0)">
14 <div id="status">Starting...<br/></div> 14 <div id="status">Starting...<br/></div>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698