2 <script src=
"/resources/testharness.js"></script>
3 <script src=
"/resources/testharnessreport.js"></script>
5 var t
= async_test('Imported inline CSS with no quote is not blocked on pending CSS');
7 <link rel=stylesheet
href=
"resources/dummy.css?first&pipe=trickle(d1)">
9 var this_script_is_neccessary_to_block_the_inline_style_processing
= true;
12 @import url(resources/dummy.css?second);
15 window
.addEventListener("load", t
.step_func_done(() => {
16 let entries
= performance
.getEntriesByType('resource');
19 for (entry
of entries
) {
20 if (entry
.name
.includes("first")) {
23 if (entry
.name
.includes("second")) {
27 assert_true(first
.responseEnd
> second
.startTime
, "The second resource start time should not be blocked on the first resource response");