mirror of
https://github.com/servo/servo
synced 2026-05-02 12:26:06 +02:00
8 lines
220 B
JavaScript
8 lines
220 B
JavaScript
var inlineRan = false;
|
|
|
|
onload = function() {
|
|
test(function() {
|
|
assert_true(inlineRan, 'Unsafe inline script ran.')},
|
|
'Inline script in a script tag should run with an unsafe-inline directive'
|
|
);
|
|
} |