| document.documentElement.prepend(document.createElement('span')); |
| document.body.append(document.createElement('div')); |
| document.body.append(document.createElement('span')); |
| document.documentElement.append(document.createElement('div')); |
| let html2 = document.createElement('html'); |
| html2.style.blockSize = '0'; |
| document.body.appendChild(html2); |
| html2.appendChild(document.createElement('q')); |
| html2.appendChild(document.createElement('input')); |
| html2.appendChild(document.createElement('video')); |
| document.styleSheets[0].insertRule(`html, body, video { float: left; }`); |
| PASS if this doesn't crash |