historical.html (735B)
1 <!doctype html> 2 <title>Historical iframe element features should not be supported</title> 3 <script src="/resources/testharness.js"></script> 4 <script src="/resources/testharnessreport.js"></script> 5 <div id=log></div> 6 <script> 7 function t(property) { 8 test(function() { 9 assert_false(property in document.createElement('iframe')); 10 }, 'iframe.' + property + ' should not be supported'); 11 } 12 13 // added in https://github.com/whatwg/html/commit/f6490f17f577fa3478791b29ad8c2b586418001f 14 // removed in https://github.com/whatwg/html/commit/1490eba4dba5ab476f0981443a86c01acae01311 15 t('seamless'); 16 17 // Added by https://github.com/whatwg/html/pull/2133 18 // Removed by https://github.com/whatwg/html/pull/5915 19 t('allowPaymentRequest'); 20 </script>