mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
test-web: Dump stacking context tree in layout test output
This will allow us to test (and catch regressions in) stacking context tree construction and updates, etc.
This commit is contained in:
parent
f46bd7f5eb
commit
dab1fd265d
Notes:
github-actions[bot]
2025-07-09 12:38:27 +00:00
Author: https://github.com/awesomekling
Commit: dab1fd265d
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5369
Reviewed-by: https://github.com/gmta ✅
776 changed files with 2365 additions and 9 deletions
|
@ -460,9 +460,8 @@ TraversalDecision StackingContext::hit_test(CSSPixelPoint position, HitTestType
|
|||
return TraversalDecision::Continue;
|
||||
}
|
||||
|
||||
void StackingContext::dump(int indent) const
|
||||
void StackingContext::dump(StringBuilder& builder, int indent) const
|
||||
{
|
||||
StringBuilder builder;
|
||||
for (int i = 0; i < indent; ++i)
|
||||
builder.append(' ');
|
||||
CSSPixelRect rect = paintable_box().absolute_rect();
|
||||
|
@ -478,9 +477,9 @@ void StackingContext::dump(int indent) const
|
|||
if (!affine_transform.is_identity()) {
|
||||
builder.appendff(", transform: {}", affine_transform);
|
||||
}
|
||||
dbgln("{}", builder.string_view());
|
||||
builder.append('\n');
|
||||
for (auto& child : m_children)
|
||||
child->dump(indent + 1);
|
||||
child->dump(builder, indent + 1);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -40,7 +40,7 @@ public:
|
|||
|
||||
Gfx::AffineTransform affine_transform_matrix() const;
|
||||
|
||||
void dump(int indent = 0) const;
|
||||
void dump(StringBuilder&, int indent = 0) const;
|
||||
|
||||
void sort();
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@ enum class PageInfoType {
|
|||
LayoutTree = 1 << 2,
|
||||
PaintTree = 1 << 3,
|
||||
GCGraph = 1 << 4,
|
||||
StackingContextTree = 1 << 5,
|
||||
};
|
||||
|
||||
AK_ENUM_BITWISE_OPERATORS(PageInfoType);
|
||||
|
|
|
@ -278,8 +278,13 @@ void ConnectionFromClient::debug_request(u64 page_id, ByteString request, ByteSt
|
|||
if (request == "dump-stacking-context-tree") {
|
||||
if (auto* doc = page->page().top_level_browsing_context().active_document()) {
|
||||
if (auto* viewport = doc->layout_node()) {
|
||||
if (auto* stacking_context = viewport->paintable_box()->stacking_context())
|
||||
stacking_context->dump();
|
||||
auto& viewport_paintable = static_cast<Web::Painting::ViewportPaintable&>(*viewport->paintable_box());
|
||||
viewport_paintable.build_stacking_context_tree_if_needed();
|
||||
if (auto* stacking_context = viewport_paintable.stacking_context()) {
|
||||
StringBuilder builder;
|
||||
stacking_context->dump(builder);
|
||||
dbgln("{}", builder.string_view());
|
||||
}
|
||||
}
|
||||
}
|
||||
return;
|
||||
|
@ -976,6 +981,33 @@ static void append_paint_tree(Web::Page& page, StringBuilder& builder)
|
|||
Web::dump_tree(builder, *layout_root->first_paintable());
|
||||
}
|
||||
|
||||
static void append_stacking_context_tree(Web::Page& page, StringBuilder& builder)
|
||||
{
|
||||
auto* document = page.top_level_browsing_context().active_document();
|
||||
if (!document) {
|
||||
builder.append("(no DOM tree)"sv);
|
||||
return;
|
||||
}
|
||||
|
||||
document->update_layout(Web::DOM::UpdateLayoutReason::Debugging);
|
||||
|
||||
auto* layout_root = document->layout_node();
|
||||
if (!layout_root) {
|
||||
builder.append("(no layout tree)"sv);
|
||||
return;
|
||||
}
|
||||
if (!layout_root->first_paintable()) {
|
||||
builder.append("(no paint tree)"sv);
|
||||
return;
|
||||
}
|
||||
|
||||
auto& viewport_paintable = static_cast<Web::Painting::ViewportPaintable&>(*layout_root->paintable_box());
|
||||
viewport_paintable.build_stacking_context_tree_if_needed();
|
||||
if (auto* stacking_context = viewport_paintable.stacking_context()) {
|
||||
stacking_context->dump(builder);
|
||||
}
|
||||
}
|
||||
|
||||
static void append_gc_graph(StringBuilder& builder)
|
||||
{
|
||||
auto gc_graph = Web::Bindings::main_thread_vm().heap().dump_graph();
|
||||
|
@ -1008,6 +1040,12 @@ void ConnectionFromClient::request_internal_page_info(u64 page_id, WebView::Page
|
|||
append_paint_tree(page->page(), builder);
|
||||
}
|
||||
|
||||
if (has_flag(type, WebView::PageInfoType::StackingContextTree)) {
|
||||
if (!builder.is_empty())
|
||||
builder.append("\n"sv);
|
||||
append_stacking_context_tree(page->page(), builder);
|
||||
}
|
||||
|
||||
if (has_flag(type, WebView::PageInfoType::GCGraph)) {
|
||||
if (!builder.is_empty())
|
||||
builder.append("\n"sv);
|
||||
|
|
|
@ -41,3 +41,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>) [8,206 784x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,224 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x232] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -17,3 +17,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>#image-container) [8,8 784x150]
|
||||
ImagePaintable (ImageBox<IMG>) [8,8 150x150]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,158 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x166] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -25,3 +25,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>) [75.390625,11 16x16]
|
||||
SVGSVGPaintable (SVGSVGBox<svg>) [75.390625,11 16x16]
|
||||
SVGPathPaintable (SVGGeometryBox<path>) [79.390625,16.71875 8x4.953125]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x38] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -8,3 +8,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<HTML>) [0,0 800x16]
|
||||
PaintableWithLines (BlockContainer<BODY>) [8,8 784x0]
|
||||
PaintableWithLines (BlockContainer<DIV>) [8,550 100x50]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x16] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -12,3 +12,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.static) [18,18 210x210]
|
||||
PaintableWithLines (BlockContainer<DIV>.absolute) [18,228 110x210]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [18,228 764x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [5,5 790x236] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -10,3 +10,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<BODY>) [9,9 502x102] overflow: [10,10 501x100]
|
||||
PaintableWithLines (BlockContainer<DIV>.image-container) [260,10 250x30.46875] overflow: [261,11 250x28.46875]
|
||||
ImagePaintable (ImageBox<IMG>) [261,11 250x28.46875]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x0] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -11,3 +11,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableBox (Box<BODY>) [8,8 514.859375x22]
|
||||
PaintableWithLines (BlockContainer<DIV>) [9,9 512.859375x20]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x0] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -14,3 +14,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<BODY>) [8,8 784x0]
|
||||
PaintableBox (Box<DIV>.container) [8,8 100x100]
|
||||
PaintableWithLines (BlockContainer<DIV>.bottom-left) [8,38 70x70]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x16] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -14,3 +14,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<BODY>) [8,8 784x0]
|
||||
PaintableBox (Box<DIV>.container) [8,8 100x100]
|
||||
PaintableWithLines (BlockContainer<DIV>.top-right) [38,8 70x70]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x16] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -13,3 +13,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableBox (Box<NAV>) [10,10 312.453125x22]
|
||||
PaintableWithLines (BlockContainer<DIV>.item) [11,11 310.453125x20]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x18] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -32,3 +32,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer(anonymous)) [83,8 50x0]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,8 200x0]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,108 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x116] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -7,3 +7,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600] overflow: [0,0 808x608]
|
|||
PaintableWithLines (BlockContainer<HTML>) [0,0 800x16]
|
||||
PaintableWithLines (BlockContainer<BODY>) [8,8 784x0]
|
||||
ImagePaintable (ImageBox<IMG>#zero-dimensions-but-min-percentages) [8,8 800x600]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x16] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -11,3 +11,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableBox (Box<BODY>) [8,8 31.15625x300]
|
||||
PaintableWithLines (BlockContainer<DIV>) [8,8 31.15625x300]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x0] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -15,3 +15,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.only-t-l) [5,5 12x12]
|
||||
PaintableWithLines (BlockContainer<DIV>.only-mt-ml) [15,15 12x12]
|
||||
PaintableWithLines (BlockContainer<DIV>.both) [10,10 12x12]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x18] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -14,3 +14,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<MAIN>) [8,13 0x0]
|
||||
PaintableWithLines (BlockContainer<DIV>) [8,0 36.84375x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x18] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -18,3 +18,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer<DIV>.two) [329.5625,350 30.4375x20]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x0] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -13,3 +13,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>) [8,8 784x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
ImagePaintable (ImageBox<IMG>) [50,26 100x100]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x34] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -175,3 +175,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
TextPaintable (TextNode<#text>)
|
||||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [20,400 480x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x420] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -7,3 +7,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<HTML>) [0,0 800x16]
|
||||
PaintableBox (Box<BODY>) [8,8 784x0]
|
||||
PaintableWithLines (BlockContainer<DIV>) [-5000,8 0x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x16] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -17,3 +17,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,79.875 784x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x105.875] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -13,3 +13,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>) [8,8 202x102]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,110 784x202]
|
||||
ImagePaintable (ImageBox<IMG>) [8,110 202x202]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x320] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -13,3 +13,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>) [8,8 202x2]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,10 784x202]
|
||||
ImagePaintable (ImageBox<IMG>) [8,10 202x202]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x220] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -8,3 +8,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<HTML>) [0,0 800x216]
|
||||
PaintableWithLines (BlockContainer<BODY>) [8,8 784x200]
|
||||
ImagePaintable (ImageBox<IMG>) [8,8 200x200]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x216] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -13,3 +13,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>) [8,8 202x102]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,110 784x102]
|
||||
ImagePaintable (ImageBox<IMG>) [8,110 202x102]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x220] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -10,3 +10,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<BODY>) [8,8 784x100]
|
||||
PaintableWithLines (BlockContainer<DIV>) [204,8 392x100]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,108 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x116] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -8,3 +8,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<HTML>) [0,0 800x0]
|
||||
PaintableWithLines (BlockContainer<BODY>.outer) [8,8 0x0] overflow: [8,8 2x2]
|
||||
PaintableWithLines (BlockContainer<DIV>.inner) [8,8 2x2]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x0] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -7,3 +7,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<HTML>) [0,0 800x0]
|
||||
PaintableWithLines (BlockContainer<BODY>.outer) [8,8 0x0] overflow: [8,8 2x2]
|
||||
PaintableWithLines (BlockContainer<DIV>.inner) [8,8 2x2]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x0] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -51,3 +51,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.margin-right) [8,170 548.8125x126]
|
||||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,296 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x304] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -9,3 +9,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<HTML>) [0,0 800x16]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [0,0 800x0]
|
||||
PaintableWithLines (BlockContainer<BODY>) [8,8 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x16] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -14,3 +14,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<BODY>) [8,8 784x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x34] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -19,3 +19,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableBox (Box<DIV>.box) [0,10 202x74]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [1,11 200x72]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x18] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -9,3 +9,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<BODY>) [9,9 782x314]
|
||||
PaintableWithLines (BlockContainer<DIV>.box) [10,10 272x312]
|
||||
PaintableWithLines (BlockContainer<DIV>.inner) [11,21 102x102]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x330] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -11,3 +11,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>#foo) [349,0 102x102]
|
||||
PaintableWithLines (BlockContainer<DIV>#bar) [698,100 102x102]
|
||||
PaintableWithLines (BlockContainer<DIV>#baz) [0,200 102x102]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x18] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -9,3 +9,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<BODY>) [9,9 782x314]
|
||||
PaintableWithLines (BlockContainer<DIV>.box) [10,10 272x312]
|
||||
PaintableWithLines (BlockContainer<DIV>.inner) [179,219 102x102]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x330] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -13,3 +13,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.features-list) [8,8 402x402]
|
||||
PaintableWithLines (BlockContainer<DIV>.feature) [108,9 202x202]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x418] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -7,3 +7,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<HTML>) [0,0 800x256]
|
||||
PaintableWithLines (BlockContainer<BODY>) [8,8 784x240]
|
||||
PaintableWithLines (BlockContainer<DIV>.abspos) [8,8 784x240]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x256] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -9,3 +9,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<BODY>) [9,9 782x314]
|
||||
PaintableWithLines (BlockContainer<DIV>.box) [10,10 272x312]
|
||||
PaintableWithLines (BlockContainer<DIV>.inner) [11,21 210x210]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x330] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -9,3 +9,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<BODY>) [8,8 784x50] overflow: [8,8 784x100]
|
||||
PaintableWithLines (BlockContainer<DIV>.box) [8,8 784x50] overflow: [8,8 784x100]
|
||||
PaintableWithLines (BlockContainer<DIV>.inner) [8,58 784x50]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x66] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -9,3 +9,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<BODY>) [9,9 782x314]
|
||||
PaintableWithLines (BlockContainer<DIV>.box) [10,10 272x312]
|
||||
PaintableWithLines (BlockContainer<DIV>.inner) [31,21 102x102]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x330] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -19,3 +19,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.box) [8,8 192x192]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [200,8 36.84375x192]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x208] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -11,3 +11,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableBox (Box<BODY>) [8,8 100x100]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,8 9.46875x100]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x116] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -12,3 +12,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<BODY>) [1,1 798x62.40625] overflow: [2,2 796x64]
|
||||
PaintableWithLines (BlockContainer<DIV>.clump) [2,2 32x32]
|
||||
PaintableWithLines (BlockContainer<DIV>.clump) [3,34 32x32]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x62.40625] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -15,3 +15,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>) [8,8 37.15625x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
ImagePaintable (ImageBox<IMG>) [35.15625,11 10x10]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x34] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -10,3 +10,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<BODY>) [8,8 140x100]
|
||||
PaintableWithLines (BlockContainer<DIV>.black) [8,8 140x100] overflow: [58,58 40x40]
|
||||
PaintableWithLines (BlockContainer<DIV>.green) [58,58 40x40]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x0] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -39,3 +39,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
TextPaintable (TextNode<#text>)
|
||||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,44 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x108] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -17,3 +17,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.green) [0,50 150x50]
|
||||
PaintableWithLines (BlockContainer<DIV>.orange) [0,100 150x50]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [0,0 200x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x150] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -26,3 +26,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.orange) [65,3 252x52]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [2,4 400x0] overflow: [2,55 102x52]
|
||||
PaintableWithLines (BlockContainer<DIV>.green) [2,55 102x52]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x106] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -13,3 +13,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>#pink) [8,200 100x100]
|
||||
PaintableWithLines (BlockContainer<DIV>#orange) [8,200 50x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 100x308] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -36,3 +36,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer(anonymous)) [43.15625,26 27.640625x0]
|
||||
PaintableWithLines (InlineNode<SPAN>) [43.15625,26 0x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x34] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -29,3 +29,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600] overflow: [0,0 800x976]
|
|||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer<DIV>.normal) [8,328 320x320]
|
||||
PaintableWithLines (BlockContainer<DIV>.normal) [8,648 320x320]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x976] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -20,3 +20,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.box2) [10,30 140.28125x20]
|
||||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [10,50 780x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x58] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -14,3 +14,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.box) [10,10 140.28125x20]
|
||||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [10,30 780x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x38] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -35,3 +35,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer(anonymous)) [109,29 682x0]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [109,29 682x0]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,30 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x48] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -41,3 +41,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [108,26 684x0]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x34] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -66,3 +66,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [108,44 684x0]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,44 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x52] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -32,3 +32,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.baz) [10,50 185.078125x20]
|
||||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [10,70 780x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x78] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -38,3 +38,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.baz) [10,86 95.765625x38]
|
||||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [10,124 780x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x132] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -13,3 +13,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<BODY>) [109,9 302x40] overflow: [60,10 350x38]
|
||||
PaintableWithLines (BlockContainer<DIV>) [60,10 202x38]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x56] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -13,3 +13,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.square.white) [8,8 100x100]
|
||||
PaintableWithLines (BlockContainer<DIV>.clearfix) [8,108 10x10]
|
||||
PaintableWithLines (BlockContainer<DIV>.square.black) [8,218 49x49]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x267] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -27,3 +27,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer(anonymous)) [8,126 100x18]
|
||||
PaintableWithLines (InlineNode<DIV>.inline) [8,126 9.46875x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x116] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -32,3 +32,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer(anonymous)) [40.828125,10 23.359375x46]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [40.828125,10 23.359375x46]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x66] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -18,3 +18,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer(anonymous)) [13,10 420x420]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [13,10 420x420]
|
||||
ImagePaintable (ImageBox<IMG>) [13,10 420x420]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x440] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -34,3 +34,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.border-black) [22,67 48.6875x120]
|
||||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [22,187 48.6875x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x216] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -25,3 +25,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer(anonymous)) [13,32 324.671875x18]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [13,32 324.671875x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x60] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -16,3 +16,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer(anonymous)) [29,29 0x0]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [29,29 0x0]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [9,9 40x40]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x58] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -19,3 +19,7 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer(anonymous)) [13,10 414.703125x57]
|
||||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [9,9 422.703125x59]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x77] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer(anonymous) [9,9 422.703125x59] [children: 0] (z-index: -1)
|
||||
|
|
|
@ -19,3 +19,7 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer(anonymous)) [13,10 414.703125x57]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [9,9 422.703125x59]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x77] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer(anonymous) [9,9 422.703125x59] [children: 0] (z-index: -1)
|
||||
|
|
|
@ -40,3 +40,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>) [40.828125,10 23.359375x46]
|
||||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [40.828125,56 23.359375x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x66] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -17,3 +17,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer(anonymous)) [13,10 143.515625x100]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [13,51 143.515625x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x120] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -16,3 +16,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer(anonymous)) [13,10 49.921875x18]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [13,10 49.921875x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x38] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -16,3 +16,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer(anonymous)) [13,10 111.65625x55]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [13,10 111.65625x55]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x75] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -16,3 +16,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer(anonymous)) [13,10 37.21875x18]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [13,10 37.21875x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x38] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -29,3 +29,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer<DIV>.c) [8,157.875 11.5625x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x175.875] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -19,3 +19,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.mystery) [8,101 784x0]
|
||||
PaintableWithLines (BlockContainer<DIV>.lower) [8,101 784x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x127] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -24,3 +24,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer(anonymous)) [8,108 784x0] overflow: [8,108 49x49]
|
||||
PaintableWithLines (BlockContainer<DIV>.square.black) [8,108 49x49]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,108 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x157] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -14,3 +14,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>) [8,8 206.65625x100]
|
||||
PaintableWithLines (BlockContainer<DIV>) [214.65625,8 206.65625x100]
|
||||
PaintableWithLines (BlockContainer<DIV>) [421.3125,8 206.65625x100]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x116] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -19,3 +19,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableBox (Box<DIV>.flex) [8,8 362.890625x50]
|
||||
PaintableWithLines (BlockContainer<DIV>.item) [8,8 32.34375x50]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x66] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -113,3 +113,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>) [8,8 784x342]
|
||||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,350 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x358] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -23,3 +23,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>#a) [8,8 784x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x60] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -38,3 +38,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [9,127 778x0]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,128 780x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x136] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -37,3 +37,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer<DIV>.right) [684,8 52x52] overflow: [685,9 50.78125x50]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x60] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -24,3 +24,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer(anonymous)) [8,208 784x0]
|
||||
PaintableWithLines (BlockContainer<DIV>.d) [8,208 500x200]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,408 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x416] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -21,3 +21,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<P>) [8,124 784x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,158 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x158] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -13,3 +13,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<BODY>) [8,8 784x118]
|
||||
PaintableWithLines (BlockContainer<DIV>.a) [8,8 100x100]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x134] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -33,3 +33,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.a) [342,241 300x225]
|
||||
PaintableWithLines (BlockContainer<DIV>.b) [8,104 634x300]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,404 634x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 650x466] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -21,3 +21,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.c) [8,108 0x0]
|
||||
PaintableWithLines (BlockContainer<DIV>.d) [8,108 784x50]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,158 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x166] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -23,3 +23,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.right.w320.red) [89,9 320x50]
|
||||
PaintableWithLines (BlockContainer<DIV>.left.w80.blue) [9,9 80x50]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,60 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x68] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -26,3 +26,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.c) [58,8 50x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x34] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -23,3 +23,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.c.l) [8,114 30x300]
|
||||
PaintableWithLines (BlockContainer<DIV>.c.r) [78,114 30x300]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,14 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x414] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -17,3 +17,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.b.g) [300,8 150x150]
|
||||
PaintableWithLines (BlockContainer<DIV>.b.r) [300,158 150x150]
|
||||
PaintableWithLines (BlockContainer(anonymous)) [8,308 784x0]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x316] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -16,3 +16,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer(anonymous)) [8,58 784x0] overflow: [8,58 784x100]
|
||||
PaintableWithLines (BlockContainer<DIV>.b.bug) [8,58 784x50]
|
||||
PaintableWithLines (BlockContainer<DIV>.c.bug) [8,108 784x50]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x158] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -212,3 +212,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.left) [252,10 302x202]
|
||||
PaintableWithLines (BlockContainer<DIV>.right) [488,212 302x202]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x450] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -48,3 +48,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<DIV>.left) [252,10 302x202]
|
||||
PaintableWithLines (BlockContainer<DIV>.right) [488,212 302x202]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [1,1 798x450] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -15,3 +15,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
PaintableWithLines (BlockContainer<BODY>) [8,8 784x0] overflow: [8,8 784x52]
|
||||
PaintableWithLines (BlockContainer<DIV>#b) [8,8 52x52]
|
||||
PaintableWithLines (BlockContainer<DIV>#c) [740,8 52x52]
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x60] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -23,3 +23,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer<SPAN>) [22.265625,8 9.34375x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x26] [children: 0] (z-index: auto)
|
||||
|
|
|
@ -19,3 +19,6 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
|
|||
TextPaintable (TextNode<#text>)
|
||||
PaintableWithLines (BlockContainer<SPAN>) [22.265625,8 9.34375x18]
|
||||
TextPaintable (TextNode<#text>)
|
||||
|
||||
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
|
||||
SC for BlockContainer<HTML> [0,0 800x26] [children: 0] (z-index: auto)
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue