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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/webstorage/document-domain.html

Issue 1453993002: update-w3c-deps import using blink cc6d84edb87e89c363ab48dac8a983213b9dc02c: (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Skip imported/web-platform-tests/html/webappapis/scripting/events/onerroreventhandler.html Created 5 years, 1 month 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
(Empty)
1 <!doctype html>
2 <title>localStorage and document.domain</title>
3 <script src="../../../resources/testharness.js"></script>
4 <script src="../../../resources/testharnessreport.js"></script>
5 </head>
6 <body>
7 <div id="log"></div>
8 <iframe></iframe>
9 <script>
10 async_test(function(t) {
11 frames[0].addEventListener("storage", function(e) {
12 t.step(function() {
13 localStorage.clear()
14 t.done()
15 })
16 })
17 frames[0].document.domain = document.domain
18 localStorage.setItem("test", "test")
19 })
20 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698