Skip to content

Commit

Permalink
Test that <iframe seamless> is not supported (#3683); r=Ms2ger
Browse files Browse the repository at this point in the history
  • Loading branch information
zcorpan authored and Ms2ger committed Sep 9, 2016
1 parent 575ecfe commit 1281c2f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions html/semantics/embedded-content/the-iframe-element/historical.html
@@ -0,0 +1,16 @@
<!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');
}

// added in https://github.com/whatwg/html/commit/f6490f17f577fa3478791b29ad8c2b586418001f
// removed in https://github.com/whatwg/html/commit/1490eba4dba5ab476f0981443a86c01acae01311
t('seamless');
</script>

0 comments on commit 1281c2f

Please sign in to comment.