Commit a33db92d authored by Hixie's avatar Hixie

Improve the RenderObject.toString() logic so that there's not blank lines...

Improve the RenderObject.toString() logic so that there's not blank lines everywhere and to generally be better.
Adds sizes, positions, transforms, improves RenderParagraph's output.

R=abarth@chromium.org

Review URL: https://codereview.chromium.org/1160233004
parent 7ebb281c
...@@ -218,5 +218,9 @@ class StocksApp extends App { ...@@ -218,5 +218,9 @@ class StocksApp extends App {
void main() { void main() {
print("starting stocks app!"); print("starting stocks app!");
new StocksApp(); App app = new StocksApp();
app.appView.onFrame = () {
// uncomment this for debugging:
// app.appView.debugDumpRenderTree();
};
} }
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