blob: 0748b459092089e12743df4ccb458c6edf770515 [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<title>load/error events for classic scripts with a style sheet that is blocking scripts</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/load-error-events-helpers.js"></script>
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block">
<script>
"use strict";
var test5_load = event_test('no src, parser-inserted, has style sheets blocking scripts, script nesting level == 1', false, false);
</script>
<link rel="stylesheet" href="/common/slow.py"></link>
<!-- This is testing the case where an inline classic script is inserted
by parser while there is an loading stylesheet. Therefore, it is critical to
place a <link rel="stylesheet"> just above the <script> to be tested. -->
<script onload="onLoad(test5_load);" onerror="onError(test5_load);">
"use strict";
onExecute(test5_load);
</script>
</head>