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

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

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 <title>Script @type: unknown parameters</title>
3 <link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com">
4 <link rel="help" href="https://html.spec.whatwg.org/multipage/#scriptingLanguage s">
5 <script src="../../../../../../resources/testharness.js"></script>
6 <script src="../../../../../../resources/testharnessreport.js"></script>
7 <div id="log"></div>
8 <div id="test">
9 <script type="text/javascript;charset=UTF-8">
10 test(function() {
11 assert_unreached("'charset' should have prevented this script from executing." );
12 })
13 </script>
14 <script type="text/javascript;x-test=abc">
15 test(function() {
16 assert_unreached("'x-test' should have prevented this script from executing.") ;
17 })
18 </script>
19 </div>
20 <script>
21 test(function() {
22 assert_true(true)
23 })
24 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698