Bug 1092363 - Disable bug 931668 optimizations for the time being. r=dbaron

This commit is contained in:
Cameron McCormack 2015-01-22 13:25:08 +11:00
Родитель 974e913ef0
Коммит 301463dc20
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -2968,7 +2968,7 @@ ElementRestyler::RestyleSelf(nsIFrame* aSelf,
RestyleResult result;
if (aRestyleHint) {
if (aRestyleHint || true /* XXX bug 1092363 */) {
result = eRestyleResult_Continue;
} else {
result = ComputeRestyleResultFromFrame(aSelf);
@ -3266,7 +3266,9 @@ ElementRestyler::RestyleSelf(nsIFrame* aSelf,
// previous continuation, so newContext == oldContext.
if (result != eRestyleResult_Stop) {
if (copyFromContinuation) {
if (true) {
// XXX bug 1092363
} else if (copyFromContinuation) {
LOG_RESTYLE("not swapping style structs, since we copied from a "
"continuation");
} else if (oldContext->IsShared() && newContext->IsShared()) {