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

Side by Side Diff: LayoutTests/imported/web-platform-tests/html/semantics/scripting-1/the-script-element/async_001.htm

Issue 1144143009: W3C Test: Import web-platform-tests/html/semantics (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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>Async property on a dynamically-created script is true by default </title>
5 <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
6 <meta description="This test checks the Async property on a dynamically- created script element. By default it should be true." />
7 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
8 <link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-scrip t-async"/>
9 <script src="../../../../../../resources/testharness.js"></script>
10 <script src="../../../../../../resources/testharnessreport.js"></script>
11 </head>
12 <body>
13 <div id=log></div>
14 <script type="text/javascript">
15 test(function() {assert_true(document.createElement("script").async) }, "Async property on a dynamically-created script is true by default");
16 </script>
17 </body>
18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698