Commit 91a72d9f authored by Ian Hickson's avatar Ian Hickson

Merge pull request #879 from Hixie/RenderBlockViewport

Abstract out syncChildren().
parents e51525cf e6f34f86
......@@ -272,7 +272,8 @@ class RenderBlockViewport extends RenderBlockBase {
result = intrinsicCallback(constraints);
if (result == null)
result = constrainer(0.0);
assert(constrainer(result) == result);
else
result = constrainer(result);
} finally {
_inCallback = false;
}
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment