Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<title>Historical iframe element features should not be supported</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
function t(property) {
test(function() {
assert_false(property in document.createElement('iframe'));
}, 'iframe.' + property + ' should not be supported');
}
t('seamless');
t('allowPaymentRequest');
</script>