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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/html/semantics/scripting-1/the-script-element/script-not-found-not-executed.html

Issue 2648173006: Import wpt@cf62b859e6b890abc34f8140d185ba91df95c5b6 (Closed)
Patch Set: Rebased Created 3 years, 10 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
OLDNEW
(Empty)
1 <!doctype html>
2 <meta charset="utf-8">
3 <title></title>
4 <script src="/resources/testharness.js"></script>
5 <script src="/resources/testharnessreport.js"></script>
6 <script>var test1_token = "script not executed";</script>
7 <script src="script-not-found-not-executed.py"></script>
8 <script>
9 test(function(){
10 assert_equals(test1_token, "script not executed");
11 }, "Script that 404");
12 </script>
13 <script>var test2_token = "script not executed";</script>
14 <script src="script-not-found-not-executed-2.py"></script>
15 <script>
16 test(function(){
17 assert_equals(test2_token, "script executed");
18 }, "Script that does not 404");
19 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698