Backed out changeset 88fee7a54781 (bug 1729578) for crashtest failures on 1507961-1.html . CLOSED TREE

This commit is contained in:
Narcis Beleuzu 2021-09-14 15:20:04 +03:00
Родитель 0fc9c3ee58
Коммит e5d3122984
3 изменённых файлов: 2 добавлений и 32 удалений

Просмотреть файл

@ -1,26 +0,0 @@
<style>
#b {
column-span: all;
}
* {
column-count: 17;
}
.c {
column-span: all;
overflow-wrap: break-word;
height: 0.001592530849548246em;
}
</style>
<script>
let go = () => {
a.appendChild(d)
}
</script>
<body onload=go()>
<ol id="b">
<li></li>
</ol>
<a id="a">x</a>
<dl id="d">
<dd class="c">;MLCI|=oV;nvAP*o7U</dd>
<u>x</u>

Просмотреть файл

@ -560,4 +560,3 @@ load 1685146.html
load 1689912.html
load 1690163.html
load 1723200.html
load 1729578.html

Просмотреть файл

@ -4493,11 +4493,8 @@ class nsContinuingTextFrame final : public nsTextFrame {
nsIFrame* FirstInFlow() const final;
nsTextFrame* FirstContinuation() const final {
// If we have a prev-continuation pointer, then our first-continuation
// must be the same as that frame's.
MOZ_ASSERT((!mPrevContinuation && !mFirstContinuation) ||
(mPrevContinuation &&
mPrevContinuation->FirstContinuation() == mFirstContinuation));
MOZ_DIAGNOSTIC_ASSERT(mFirstContinuation || !mPrevContinuation,
"mFirstContinuation unexpectedly null!");
return mFirstContinuation;
};