From 45232ab3bb7320375f1ed03b24a90cc40be26d17 Mon Sep 17 00:00:00 2001 From: Elliott Sprehn Date: Mon, 12 Jan 2015 18:15:23 -0800 Subject: [PATCH] Remove tracking of pending sheets. I was going to remove all this anyway since we don't need it in sky, all sheets are local and there's no concept of a pending sheet now. I also removed the dirty bit I added to StyleSheetCollection. The bit is not correct and is preventing us from correctly processing sheets and invalidating style. I'll add it back later when I understand how to add the dirty bit correctly. R=ojan@chromium.org Review URL: https://codereview.chromium.org/846183002 --- .../src/flutter/tests/lowlevel/home-expected.txt | 13 +++++++++++++ engine/src/flutter/tests/lowlevel/home.sky | 14 ++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 engine/src/flutter/tests/lowlevel/home-expected.txt create mode 100644 engine/src/flutter/tests/lowlevel/home.sky diff --git a/engine/src/flutter/tests/lowlevel/home-expected.txt b/engine/src/flutter/tests/lowlevel/home-expected.txt new file mode 100644 index 0000000000..d5f7a8a0c4 --- /dev/null +++ b/engine/src/flutter/tests/lowlevel/home-expected.txt @@ -0,0 +1,13 @@ +layer at (0,0) size 800x600 + RenderView {#document} at (0,0) size 800x600 +layer at (0,0) size 800x137 + RenderBlock {div} at (0,0) size 800x137 + RenderBlock {div} at (32,32) size 736x38 + RenderParagraph (anonymous) at (0,0) size 736x38 + RenderText {#text} at (0,0) size 191x38 + text run at (0,0) width 191: "about:blank" + RenderBlock {div} at (16,110) size 768x19 [color=#BCD8F5] + RenderParagraph (anonymous) at (0,0) size 768x19 + RenderText {#text} at (0,0) size 152x19 + text run at (0,0) width 152: "Welcome to Sky!" + diff --git a/engine/src/flutter/tests/lowlevel/home.sky b/engine/src/flutter/tests/lowlevel/home.sky new file mode 100644 index 0000000000..381d43caa4 --- /dev/null +++ b/engine/src/flutter/tests/lowlevel/home.sky @@ -0,0 +1,14 @@ +
+ +
about:blank
+
Welcome to Sky!
+ +
\ No newline at end of file