mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
7 lines
331 B
JavaScript
7 lines
331 B
JavaScript
'use strict';
|
|
|
|
test(() => {
|
|
let iframe = document.createElement('iframe');
|
|
assert_true(iframe.sandbox.supports('allow-storage-access-by-user-activation'), '`allow-storage-access-by-user-activation`' +
|
|
'sandbox attribute should be supported');
|
|
}, "`allow-storage-access-by-user-activation` sandbox attribute is supported");
|