Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
michael@0 | 1 | <html xmlns="http://www.w3.org/1999/xhtml"> |
michael@0 | 2 | <head> |
michael@0 | 3 | <title>frame for localStorage test</title> |
michael@0 | 4 | |
michael@0 | 5 | <script type="text/javascript" src="interOriginFrame.js"></script> |
michael@0 | 6 | <script type="text/javascript"> |
michael@0 | 7 | |
michael@0 | 8 | var currentStep = parseInt(location.search.substring(1)); |
michael@0 | 9 | |
michael@0 | 10 | function doStep() |
michael@0 | 11 | { |
michael@0 | 12 | switch (currentStep) |
michael@0 | 13 | { |
michael@0 | 14 | case 1: |
michael@0 | 15 | localStorage.clear(); |
michael@0 | 16 | break; |
michael@0 | 17 | |
michael@0 | 18 | case 2: |
michael@0 | 19 | localStorage.setItem("a", "1"); |
michael@0 | 20 | is(localStorage["a"], "1", "Value a=1 set"); |
michael@0 | 21 | break; |
michael@0 | 22 | |
michael@0 | 23 | case 3: |
michael@0 | 24 | try { |
michael@0 | 25 | is(localStorage.key(0), "a", "Key 'a' present in 'key' array") |
michael@0 | 26 | } |
michael@0 | 27 | catch (exc) { |
michael@0 | 28 | ok(false, "Shouldn't throw when accessing key(0) " + exc); |
michael@0 | 29 | } |
michael@0 | 30 | is(localStorage["a"], "1", "Value a=1 set"); |
michael@0 | 31 | break; |
michael@0 | 32 | |
michael@0 | 33 | default: |
michael@0 | 34 | return finishTest(); |
michael@0 | 35 | } |
michael@0 | 36 | |
michael@0 | 37 | // Increase by two to as odd number are executed in a window separate from |
michael@0 | 38 | // where even step are. |
michael@0 | 39 | ++currentStep; |
michael@0 | 40 | ++currentStep; |
michael@0 | 41 | |
michael@0 | 42 | return true; |
michael@0 | 43 | } |
michael@0 | 44 | |
michael@0 | 45 | </script> |
michael@0 | 46 | |
michael@0 | 47 | </head> |
michael@0 | 48 | |
michael@0 | 49 | <body onload="postMsg('frame loaded');"> |
michael@0 | 50 | </body> |
michael@0 | 51 | </html> |