| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script src="../../resources/testharness.js"></script> |
| 3 <script src="../../resources/testharnessreport.js"></script> |
| 4 <script> |
| 5 window.onload = function() { |
| 6 test(function() { |
| 7 var doc = document; |
| 8 for (i = 0; i < 10; i++) { |
| 9 var frame = doc.createElement('iframe'); |
| 10 frame.src = 'about:blank'; |
| 11 doc.body.appendChild(frame); |
| 12 assert_not_equals(frame.contentDocument, null); |
| 13 assert_not_equals(frame.clientHeight, 0); |
| 14 doc = frame.contentDocument; |
| 15 } |
| 16 }, 'Nested about:blank iframes should not be blocked as self-referential ifr
ames.'); |
| 17 } |
| 18 </script> |
| OLD | NEW |