gecko-dev/dom/base/crashtests/1352453.html
Ethan Lin 9c5fa8f8b7 Bug 1352453 - Add crashtest for this bug. r=heycam
MozReview-Commit-ID: 97vLPFkTYli

--HG--
extra : rebase_source : aee6981d876242295124338b73ad575b6f2c3826
2017-09-23 15:20:05 +08:00

23 lines
499 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
tr {
font: medium / 1000 cursive;
}
:only-of-type {
border-image: repeating-linear-gradient(45deg, blue, red) space 1% / 1pt auto;
}
</style>
<script>
o1 = document.createElement('tr');
o2 = document.createElement('th');
o3 = document.createElement('rt');
document.documentElement.appendChild(o1);
o1.appendChild(o2);
o2.appendChild(o3);
</script>
</head>
</html>