gecko-dev/layout/style/crashtests/1388234.html
Emilio Cobos Álvarez e4646d449f Bug 1388234: Don't assert when calling out of band to ResolveInheritingAnonymousBoxStyle. r=heycam
MozReview-Commit-ID: FYctJRfLTK6

--HG--
extra : rebase_source : feec0d3a65c501ea7b3382d892f512388bd7240e
2017-08-08 14:54:13 +02:00

10 lines
436 B
HTML

<style></style>
<script>
try { o1 = document.createElement('th') } catch(e) { }
try { document.documentElement.appendChild(o1) } catch(e) { }
try { document.styleSheets[0].insertRule("* { }", 0); } catch(e) { }
try { document.documentElement.getBoundingClientRect() } catch(e) { }
try { document.styleSheets[0].insertRule("* { unicode-bidi: bidi-override}", 0); } catch(e) { }
try { o1.rowSpan = 32 } catch(e) { }
</script>