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

Side by Side Diff: LayoutTests/imported/web-platform-tests/html-imports/document/document-method-changes.html

Issue 560893005: First checked-in import of the W3C's test suites. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add new expectations for newly failing w3c tests Created 6 years, 3 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>The import attribute</title>
5 <link rel="help" href="http://w3c.github.io/webcomponents/spec/imports/#interfac e-import">
6 <script src="../../../../resources/testharness.js"></script>
7 <script src="../../../../resources/testharnessreport.js"></script>
8 <link rel="stylesheet" href="../../../../resources/testharness.css">
9
10 <link id="importLink" rel="import" href="resources/body-only.html">
11 <link rel="import" href="resources/test-in-import.html">
12 </head>
13 <body>
14 <div id="log"></div>
15 <script>
16 test(function() {
17 assert_throws('INVALID_STATE_ERR', function() { importLink.import.open(); }, 'document.open()');
18 assert_throws('INVALID_STATE_ERR', function() { importLink.import.write('Hell o'); }, 'document.write()');
19 assert_throws('INVALID_STATE_ERR', function() { importLink.import.open(); }, 'document.close()');
20 }, 'Throws an InvalidStateError exception if the Document is an import: From the master document');
21 </script>
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698