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

Side by Side Diff: LayoutTests/fast/dom/shadow/shadowroot-clonenode.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE> 1 <!DOCTYPE>
2 <html> 2 <html>
3 <script src="../../js/resources/js-test-pre.js"></script> 3 <script src="../../../resources/js-test.js"></script>
4 4
5 <pre id="console"></pre> 5 <pre id="console"></pre>
6 6
7 <script> 7 <script>
8 description('Calling ShadowRoot.cloneNode() should throw a DataCloneError except ion.'); 8 description('Calling ShadowRoot.cloneNode() should throw a DataCloneError except ion.');
9 9
10 var host = document.createElement('div'); 10 var host = document.createElement('div');
11 var shadowRoot = host.createShadowRoot(); 11 var shadowRoot = host.createShadowRoot();
12 shouldThrow('shadowRoot.cloneNode()', '"DataCloneError: Failed to execute \'clon eNode\' on \'ShadowRoot\': ShadowRoot nodes are not clonable."'); 12 shouldThrow('shadowRoot.cloneNode()', '"DataCloneError: Failed to execute \'clon eNode\' on \'ShadowRoot\': ShadowRoot nodes are not clonable."');
13 </script> 13 </script>
14 </html> 14 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/shadow/shadowdom-for-media.html ('k') | LayoutTests/fast/dom/shadow/style-insertion-crash.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698