mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +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'
|
|
);
|
|
} |