summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-04-17 07:29:19 -0400
committerMatt A. Tobin <email@mattatobin.com>2020-04-17 07:29:19 -0400
commit38056aa9c931ef7e769f7fd42613318dc8aeb77b (patch)
treebceb41acda025822f80a5f0b339c8eeefd7e95d9 /layout/base/crashtests
parentfd7a325bc08f1f027b692181b6c7ab5efaf619aa (diff)
downloadUXP-38056aa9c931ef7e769f7fd42613318dc8aeb77b.tar
UXP-38056aa9c931ef7e769f7fd42613318dc8aeb77b.tar.gz
UXP-38056aa9c931ef7e769f7fd42613318dc8aeb77b.tar.lz
UXP-38056aa9c931ef7e769f7fd42613318dc8aeb77b.tar.xz
UXP-38056aa9c931ef7e769f7fd42613318dc8aeb77b.zip
Bug 1419762 - Return the inline continuation of an IB split when appending
Tag #1375
Diffstat (limited to 'layout/base/crashtests')
-rw-r--r--layout/base/crashtests/1419762.html15
-rw-r--r--layout/base/crashtests/crashtests.list1
2 files changed, 16 insertions, 0 deletions
diff --git a/layout/base/crashtests/1419762.html b/layout/base/crashtests/1419762.html
new file mode 100644
index 000000000..08a56106d
--- /dev/null
+++ b/layout/base/crashtests/1419762.html
@@ -0,0 +1,15 @@
+<style id='style_1'>
+ :first-child { display: table-column-group; }
+</style>
+<script>
+ try { o1 = document.createElement('isindex') } catch(e) { }
+ try { o2 = document.createElement('input') } catch(e) { }
+ try { o3 = document.createElement('optgroup') } catch(e) { }
+ try { o4 = document.createElement('col') } catch(e) { }
+ try { document.documentElement.appendChild(o1) } catch(e) { }
+ try { o1.appendChild(o2) } catch(e) { }
+ try { o1.appendChild(o3) } catch(e) { }
+ try { document.documentElement.offsetTop; } catch (e) { }
+ try { document.documentElement.appendChild(o4) } catch(e) { }
+ try { document.styleSheets[0].insertRule('optgroup::first-line { list-style-type: japanese-formal; }', 0); } catch(e) { }
+</script>
diff --git a/layout/base/crashtests/crashtests.list b/layout/base/crashtests/crashtests.list
index 66dc35ebc..9b09d1c84 100644
--- a/layout/base/crashtests/crashtests.list
+++ b/layout/base/crashtests/crashtests.list
@@ -485,3 +485,4 @@ load 1308848-2.html
asserts(0-1) load 1343606.html # bug 1343948
load 1404789-1.html
load 1404789-2.html
+load 1419762.html