LibWeb: Make generated content text layout-owned

Stop creating unattached DOM Text nodes for string items in generated
CSS content. These text nodes are layout artifacts, so store their text
directly in a GeneratedTextNode instead of pretending they have DOM
backing.

Teach text shaping and first-letter splitting to read text through the
layout text source while keeping DOM-specific behavior behind an
optional DOM text accessor. This preserves generated first-letter
handling without rooting fake DOM nodes.

Add crash coverage for generated content surviving GC and rebaseline
layout dumps that now identify generated text explicitly.
This commit is contained in:
Andreas Kling 2026-06-07 12:44:31 +02:00 committed by Andreas Kling
parent 3f8b28ad35
commit 9c040f1dd3
58 changed files with 1646 additions and 1550 deletions

View file

@ -2509,7 +2509,7 @@ bool FormattingContext::can_skip_is_anonymous_text_run(Box& box)
if (box.is_anonymous() && !box.is_generated_for_pseudo_element() && !box.first_child_of_type<BlockContainer>()) {
bool contains_only_white_space = true;
box.for_each_in_subtree([&](auto const& node) {
if (!is<TextNode>(node) || !static_cast<TextNode const&>(node).dom_node().data().is_ascii_whitespace()) {
if (!is<TextNode>(node) || !static_cast<TextNode const&>(node).text().is_ascii_whitespace()) {
contains_only_white_space = false;
return TraversalDecision::Break;
}

View file

@ -247,10 +247,12 @@ Optional<InlineLevelIterator::Item> InlineLevelIterator::generate_next_item()
if (!chunk_opt.has_value()) {
auto const is_only_chunk = is_first_chunk && is_last_chunk;
if (is_only_chunk && text_node->text_for_rendering().is_empty()) {
if (auto const* shadow_root = as_if<DOM::ShadowRoot>(text_node->dom_node().root()))
if (auto const* form_associated_element = as_if<HTML::FormAssociatedTextControlElement>(shadow_root->host()))
is_empty_editable = form_associated_element->text_control_to_html_element().is_mutable();
is_empty_editable |= text_node->dom_node().parent() && text_node->dom_node().parent()->is_editing_host();
if (auto const* dom_text = text_node->dom_text()) {
if (auto const* shadow_root = as_if<DOM::ShadowRoot>(dom_text->root()))
if (auto const* form_associated_element = as_if<HTML::FormAssociatedTextControlElement>(shadow_root->host()))
is_empty_editable = form_associated_element->text_control_to_html_element().is_mutable();
is_empty_editable |= dom_text->parent() && dom_text->parent()->is_editing_host();
}
}
if (is_empty_editable) {

View file

@ -31,8 +31,42 @@ TextNode::TextNode(DOM::Document& document, DOM::Text& text, AttachToDOMNode att
{
}
TextNode::TextNode(DOM::Document& document)
: Node(document, nullptr)
{
}
TextNode::~TextNode() = default;
DOM::Element const* TextNode::parent_element_for_text_transform() const
{
return dom_node().parent_element();
}
bool TextNode::is_password_input() const
{
return dom_node().is_password_input();
}
GC_DEFINE_ALLOCATOR(GeneratedTextNode);
GeneratedTextNode::GeneratedTextNode(DOM::Document& document, Utf16String text)
: TextNode(document)
, m_text(move(text))
{
}
GeneratedTextNode::~GeneratedTextNode() = default;
DOM::Element const* GeneratedTextNode::parent_element_for_text_transform() const
{
if (is_generated_for_pseudo_element())
return pseudo_element_generator();
if (auto const* parent = this->parent(); parent && parent->is_generated_for_pseudo_element())
return parent->pseudo_element_generator();
return nullptr;
}
GC_DEFINE_ALLOCATOR(TextSliceNode);
TextSliceNode::TextSliceNode(DOM::Document& document, DOM::Text& text, AttachToDOMNode attach_to_dom_node, size_t dom_start_offset, size_t dom_length)
@ -321,7 +355,7 @@ TextNode::TextForRenderingCacheKey TextNode::create_text_for_rendering_cache_key
auto text_transform = computed_values().text_transform();
Optional<String> lang;
if (first_is_one_of(text_transform, CSS::TextTransform::Uppercase, CSS::TextTransform::Lowercase, CSS::TextTransform::Capitalize)) {
if (auto parent_element = dom_node().parent_element())
if (auto parent_element = parent_element_for_text_transform())
lang = parent_element->lang();
}
@ -329,7 +363,7 @@ TextNode::TextForRenderingCacheKey TextNode::create_text_for_rendering_cache_key
.text_transform = text_transform,
.white_space_collapse = computed_values().white_space_collapse(),
.lang = move(lang),
.is_password_input = dom_node().is_password_input(),
.is_password_input = is_password_input(),
.dom_start_offset = dom_start_offset(),
.dom_length = dom_length(),
};
@ -363,8 +397,9 @@ TextNode::TextDependentCache const& TextNode::ensure_text_dependent_cache() cons
Utf16String TextNode::compute_text_for_rendering(TextForRenderingCacheKey const& cache_key) const
{
auto const& text_data = text();
if (cache_key.is_password_input) {
return Utf16String::repeated(u'', dom_node().data().length_in_code_points());
return Utf16String::repeated(u'', text_data.length_in_code_points());
}
// Apply text-transform
@ -372,8 +407,8 @@ Utf16String TextNode::compute_text_for_rendering(TextForRenderingCacheKey const&
// resulting paintable fragments' offsets into the original text node data.
// See: https://github.com/LadybirdBrowser/ladybird/issues/6177
auto const lang = cache_key.lang.has_value() ? Optional<StringView> { cache_key.lang->bytes_as_string_view() } : Optional<StringView> {};
auto text = apply_text_transform(dom_node().data(), cache_key.text_transform, lang);
if (cache_key.dom_start_offset > 0 || cache_key.dom_length < dom_node().data().length_in_code_units())
auto text = apply_text_transform(text_data, cache_key.text_transform, lang);
if (cache_key.dom_start_offset > 0 || cache_key.dom_length < text_data.length_in_code_units())
text = Utf16String::from_utf16(text.utf16_view().substring_view(cache_key.dom_start_offset, cache_key.dom_length));
// The logic below deals with converting whitespace characters. If we don't have them, return early.

View file

@ -18,6 +18,7 @@
namespace Web::Layout {
class LineBoxFragment;
class GeneratedTextNode;
class TextSliceNode;
class TextNode : public Node {
@ -29,10 +30,13 @@ public:
virtual ~TextNode() override;
DOM::Text const& dom_node() const { return static_cast<DOM::Text const&>(*Node::dom_node()); }
virtual DOM::Text const* dom_text() const { return &dom_node(); }
virtual size_t dom_start_offset() const { return 0; }
virtual size_t dom_length() const { return dom_node().data().length_in_code_units(); }
virtual size_t dom_length() const { return text().length_in_code_units(); }
virtual Utf16String const& text() const { return dom_node().data(); }
Utf16String const& text_for_rendering() const;
@ -101,6 +105,10 @@ public:
protected:
TextNode(DOM::Document&, DOM::Text&, AttachToDOMNode);
explicit TextNode(DOM::Document&);
virtual DOM::Element const* parent_element_for_text_transform() const;
virtual bool is_password_input() const;
private:
virtual bool is_text_node() const final { return true; }
@ -146,6 +154,24 @@ private:
mutable Optional<TextDependentCache> m_text_dependent_cache;
};
class GeneratedTextNode final : public TextNode {
GC_CELL(GeneratedTextNode, TextNode);
GC_DECLARE_ALLOCATOR(GeneratedTextNode);
public:
GeneratedTextNode(DOM::Document&, Utf16String);
virtual ~GeneratedTextNode() override;
virtual DOM::Text const* dom_text() const override { return nullptr; }
virtual Utf16String const& text() const override { return m_text; }
private:
virtual DOM::Element const* parent_element_for_text_transform() const override;
virtual bool is_password_input() const override { return false; }
Utf16String m_text;
};
class TextSliceNode final : public TextNode {
GC_CELL(TextSliceNode, TextNode);
GC_DECLARE_ALLOCATOR(TextSliceNode);

View file

@ -374,7 +374,7 @@ static Optional<FirstLetterTarget> find_first_letter_in_text(TextNode& text_node
|| Unicode::code_point_has_symbol_general_category(code_point);
};
auto view = text_node.dom_node().data().utf16_view();
auto view = text_node.text().utf16_view();
auto const code_units = view.length_in_code_units();
// When white-space preserves segment breaks, a newline before any letter puts the letter on a later line, so the
@ -500,17 +500,27 @@ void TreeBuilder::create_first_letter_wrapper_if_needed(DOM::Element& element, B
return;
auto& text_node = *target->text_node;
auto& dom_text = const_cast<DOM::Text&>(text_node.dom_node());
auto const full_length = dom_text.data().length_in_code_units();
auto const full_length = text_node.text().length_in_code_units();
auto const letter_end = target->letter_end;
auto& document = element.document();
auto& heap = document.heap();
auto remainder_slice = heap.allocate<TextSliceNode>(document, dom_text, Node::AttachToDOMNode::Yes, letter_end, full_length - letter_end);
auto first_letter_slice = heap.allocate<TextSliceNode>(document, dom_text, Node::AttachToDOMNode::No, 0, letter_end);
remainder_slice->set_first_letter_slice(*first_letter_slice);
GC::Ptr<TextNode> remainder_slice;
GC::Ptr<TextNode> first_letter_slice;
if (auto* dom_text = text_node.dom_text()) {
auto& mutable_dom_text = const_cast<DOM::Text&>(*dom_text);
auto dom_remainder_slice = heap.allocate<TextSliceNode>(document, mutable_dom_text, Node::AttachToDOMNode::Yes, letter_end, full_length - letter_end);
auto dom_first_letter_slice = heap.allocate<TextSliceNode>(document, mutable_dom_text, Node::AttachToDOMNode::No, 0, letter_end);
dom_remainder_slice->set_first_letter_slice(*dom_first_letter_slice);
remainder_slice = dom_remainder_slice;
first_letter_slice = dom_first_letter_slice;
} else {
auto text = text_node.text();
remainder_slice = heap.allocate<GeneratedTextNode>(document, Utf16String::from_utf16(text.utf16_view().substring_view(letter_end, full_length - letter_end)));
first_letter_slice = heap.allocate<GeneratedTextNode>(document, Utf16String::from_utf16(text.utf16_view().substring_view(0, letter_end)));
}
auto first_letter_wrapper = heap.allocate<InlineNode>(document, nullptr, *first_letter_style);
first_letter_wrapper->set_generated_for(CSS::PseudoElement::FirstLetter, element);
@ -627,8 +637,7 @@ GC::Ptr<NodeWithStyle> TreeBuilder::create_pseudo_element_if_needed(DOM::Element
for (auto& item : new_content.data) {
GC::Ptr<Layout::Node> layout_node;
if (auto const* string = item.get_pointer<String>()) {
auto text = document.realm().create<DOM::Text>(document, Utf16String::from_utf8(*string));
layout_node = document.heap().allocate<TextNode>(document, *text);
layout_node = document.heap().allocate<GeneratedTextNode>(document, Utf16String::from_utf8(*string));
} else {
auto& image = *item.get<NonnullRefPtr<CSS::ImageStyleValue>>();
image.load_any_resources(document);

View file

@ -102,7 +102,11 @@ void Viewport::update_text_blocks()
// https://html.spec.whatwg.org/multipage/interaction.html#inert-subtrees
// When a node is inert:
// - The user agent should ignore the node for the purposes of find-in-page.
auto& dom_node = const_cast<DOM::Text&>(text_node->dom_node());
auto* dom_text = text_node->dom_text();
if (!dom_text)
return TraversalDecision::Continue;
auto& dom_node = const_cast<DOM::Text&>(*dom_text);
if (dom_node.is_inert())
return TraversalDecision::Continue;

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<style>
#target::before {
content: "generated text";
}
#first-letter::before {
content: "generated first letter";
}
#first-letter::first-letter {
color: red;
}
</style>
<div id="target"></div>
<div id="first-letter"></div>
<script>
target.getBoundingClientRect();
internals.gc();
target.style.width = "10px";
target.getBoundingClientRect();
</script>

View file

@ -12,9 +12,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BreakNode <br> (not painted)
BreakNode <br> (not painted)
BlockContainer <(anonymous)> at [0,40] positioned [0+0+0 10 0+0+0] [0+0+0 20 0+0+0] [BFC] children: inline
frag 0 from TextNode start: 0, length: 1, rect: [0,40 10x20] baseline: 13
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [0,40 10x20] baseline: 13
"X"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [0,40] [0+0+0 800 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [0,40] [0+0+0 800 0+0+0] [0+0+0 0 0+0+0] children: inline
@ -29,7 +29,7 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer(anonymous)) [0,0 100x40]
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [0,40 10x20]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [0,40 800x0]
PaintableWithLines (BlockContainer(anonymous)) [0,40 800x0]

View file

@ -7,7 +7,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
"Features"
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [85.625,16.09375] positioned [0+0+0 8 0+0+0] [0+0+0 5 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)

View file

@ -6,7 +6,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <(anonymous)> at [29,29] flex-container(column) [0+0+0 0 0+0+0] [0+0+0 0 0+0+0] [FFC] children: not-inline
BlockContainer <(anonymous)> at [29,29] flex-item [0+0+0 0 0+0+0] [0+0+0 0 0+0+0] [BFC] children: not-inline
BlockContainer <(anonymous)> at [9,9] positioned [0+0+0 40 0+0+0] [0+0+0 40 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
ViewportPaintable (Viewport<#document>) [0,0 800x600]

View file

@ -10,7 +10,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
"See more games"
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [9,9] positioned [0+0+0 422.703125 0+0+0] [0+0+0 59 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<HTML>) [0,0 800x77]

View file

@ -8,7 +8,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 14, rect: [13,10 414.703125x57] baseline: 43.484375
"See more games"
BlockContainer <(anonymous)> at [9,9] positioned [0+0+0 422.703125 0+0+0] [0+0+0 59 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
ViewportPaintable (Viewport<#document>) [0,0 800x600]

View file

@ -2,9 +2,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <html> at [0,0] [0+0+0 800 0+0+0] [0+0+0 52 0+0+0] [BFC] children: not-inline
BlockContainer <body> at [8,8] [8+0+0 784 0+0+8] [8+0+0 36 0+0+8] children: not-inline
BlockContainer <(anonymous)> at [8,8] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
frag 0 from TextNode start: 0, length: 3, rect: [8,8 27.15625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,8 27.15625x18] baseline: 13.796875
"foo"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
frag 0 from TextNode start: 0, length: 3, rect: [8,26 27.640625x18] baseline: 13.796875
"bar"
@ -14,7 +14,7 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<HTML>) [0,0 800x52]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x36]
PaintableWithLines (BlockContainer(anonymous)) [8,8 784x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x18]
TextPaintable (TextNode<#text>)

View file

@ -270,7 +270,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <(anonymous)> at [2,680] [0+0+0 827.75 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [2,680] [0+0+0 827.75 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [0,692] [0+0+0 831.75 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
TextNode <#text> (not painted)

View file

@ -2,9 +2,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <html> at [0,0] [0+0+0 800 0+0+0] [0+0+0 44 0+0+0] [BFC] children: not-inline
BlockContainer <body> at [8,8] [8+0+0 784 0+0+8] [8+0+0 18 0+0+8] children: not-inline
BlockContainer <(anonymous)> at [8,8] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
frag 0 from TextNode start: 0, length: 3, rect: [8,8 27.15625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,8 27.15625x18] baseline: 13.796875
"foo"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <div> at [8,26] floating [0+0+0 27.640625 0+0+0] [0+0+0 18 0+0+0] [BFC] children: inline
frag 0 from TextNode start: 0, length: 3, rect: [8,26 27.640625x18] baseline: 13.796875
"bar"
@ -14,7 +14,7 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<HTML>) [0,0 800x44]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x18]
PaintableWithLines (BlockContainer(anonymous)) [8,8 784x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer<DIV>) [8,26 27.640625x18]
TextPaintable (TextNode<#text>)

View file

@ -5,9 +5,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 36, rect: [18.625,16 300x18] baseline: 13.796875
"P should generate a ::before pseudo."
InlineNode <(anonymous)> at [8,16] [0+0+0 10.625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,16 10.625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,16 10.625x18] baseline: 13.796875
"+"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [8,50] [0+0+0 784 0+0+0] [0+0+0 36 0+0+0] children: inline
frag 0 from TextNode start: 0, length: 14, rect: [8,68 120.578125x18] baseline: 13.796875
@ -20,7 +20,7 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<BODY>) [8,16 784x70]
PaintableWithLines (BlockContainer<P>) [8,16 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,16 10.625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [8,50 784x36]
TextPaintable (TextNode<#text>)

View file

@ -8,14 +8,14 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 3, rect: [40.15625,10 27.640625x18] baseline: 13.796875
"bar"
InlineNode <(anonymous)> at [13,10] [0+0+0 27.15625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [13,10 27.15625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [13,10 27.15625x18] baseline: 13.796875
"foo"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <(anonymous)> at [67.796875,10] [0+0+0 27.203125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [67.796875,10 27.203125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [67.796875,10 27.203125x18] baseline: 13.796875
"baz"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
ViewportPaintable (Viewport<#document>) [0,0 800x600]
@ -25,10 +25,10 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer(anonymous)) [13,10 82x18]
PaintableWithLines (BlockContainer(anonymous)) [13,10 82x18]
PaintableWithLines (InlineNode(anonymous)) [13,10 27.15625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode(anonymous)) [67.796875,10 27.203125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
SC for BlockContainer<HTML> [0,0 800x38] [children: 0] (z-index: auto)

View file

@ -7,7 +7,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <div> at [8,158] floating [0+0+0 784 0+0+0] [0+0+0 200 0+0+0] [BFC] children: not-inline
BlockContainer <div> at [8,358] floating [0+0+0 784 0+0+0] [0+0+0 80 0+0+0] [BFC] children: not-inline
BlockContainer <(anonymous)> at [8,438] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <div#after> at [8,438] [0+0+0 784 0+0+0] [0+0+0 10 0+0+0] children: not-inline
BlockContainer <(anonymous)> at [8,448] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)

View file

@ -5,7 +5,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <div.float> at [8,8] floating [0+0+0 784 0+0+0] [0+0+0 400 0+0+0] [BFC] children: not-inline
BlockContainer <div.float> at [8,408] floating [0+0+0 784 0+0+0] [0+0+0 50 0+0+0] [BFC] children: not-inline
BlockContainer <(anonymous)> at [8,458] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <div#after> at [8,458] [0+0+0 784 0+0+0] [0+0+0 10 0+0+0] children: not-inline
BlockContainer <(anonymous)> at [8,468] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)

View file

@ -6,7 +6,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <div.float> at [8,108] floating [0+0+0 784 0+0+0] [0+0+0 200 0+0+0] [BFC] children: not-inline
BlockContainer <div.float> at [8,308] floating [0+0+0 784 0+0+0] [0+0+0 50 0+0+0] [BFC] children: not-inline
BlockContainer <(anonymous)> at [8,358] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <div#after> at [8,358] [0+0+0 784 0+0+0] [0+0+0 10 0+0+0] children: not-inline
BlockContainer <(anonymous)> at [8,368] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)

View file

@ -5,7 +5,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <div.float> at [8,8] floating [0+0+0 784 0+0+0] [0+0+0 150 0+0+0] [BFC] children: not-inline
BlockContainer <div.float> at [8,158] floating [0+0+0 784 0+0+0] [0+0+0 100 0+0+0] [BFC] children: not-inline
BlockContainer <(anonymous)> at [8,258] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <div#after> at [8,258] [0+0+0 784 0+0+0] [0+0+0 10 0+0+0] children: not-inline
BlockContainer <(anonymous)> at [8,268] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)

View file

@ -9,7 +9,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <div.floated.short> at [8,308] floating [0+0+0 784 0+0+0] [0+0+0 100 0+0+0] [BFC] children: not-inline
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [8,408] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,408] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div#after> at [8,408] [0+0+0 784 0+0+0] [0+0+0 50 0+0+0] children: not-inline

View file

@ -4,19 +4,19 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <div> at [8,8] [0+0+0 784 0+0+0] [0+0+0 1200 0+0+0] children: inline
frag 0 from ImageBox start: 0, length: 0, rect: [8,808 400x400] baseline: 400
InlineNode <(anonymous)> at [8,394] [0+0+0 454.796875 0+0+0] [0+0+0 400 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,394 27.15625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,394 27.15625x18] baseline: 13.796875
"foo"
frag 1 from ImageBox start: 0, length: 0, rect: [35.15625,8 400x400] baseline: 400
frag 2 from TextNode start: 0, length: 3, rect: [435.15625,394 27.640625x18] baseline: 13.796875
frag 2 from GeneratedTextNode start: 0, length: 3, rect: [435.15625,394 27.640625x18] baseline: 13.796875
"bar"
frag 0 from ImageBox start: 0, length: 0, rect: [8,408 400x400] baseline: 400
frag 1 from TextNode start: 0, length: 3, rect: [408,794 27.203125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 3, rect: [408,794 27.203125x18] baseline: 13.796875
"baz"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
ImageBox <(anonymous)> at [35.15625,8] [0+0+0 400 0+0+0] [0+0+0 400 0+0+0] children: not-inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
ImageBox <(anonymous)> at [8,408] [0+0+0 400 0+0+0] [0+0+0 400 0+0+0] children: not-inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
ImageBox <img> at [8,808] [0+0+0 400 0+0+0] [0+0+0 400 0+0+0] children: not-inline
TextNode <#text> (not painted)
@ -25,19 +25,19 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600] overflow: [0,0 800x1216]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x1200]
PaintableWithLines (BlockContainer<DIV>) [8,8 784x1200]
PaintableWithLines (InlineNode(anonymous)) [8,394 454.796875x400]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
ImagePaintable (ImageBox(anonymous)) [35.15625,8 400x400]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
ImagePaintable (ImageBox(anonymous)) [8,408 400x400]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (InlineNode(anonymous)) [8,408 427.203125x400]
PaintableWithLines (InlineNode(anonymous)) [8,394 454.796875x400]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
ImagePaintable (ImageBox(anonymous)) [35.15625,8 400x400]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
ImagePaintable (ImageBox(anonymous)) [8,408 400x400]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (InlineNode(anonymous)) [8,408 427.203125x400]
ImagePaintable (ImageBox<IMG>) [8,808 400x400]

View file

@ -3,9 +3,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <body> at [8,8] [8+0+0 784 0+0+8] [8+0+0 66 0+0+8] children: not-inline
BlockContainer <div.string> at [9,9] [0+1+0 100 0+1+682] [0+1+0 20 0+1+0] children: inline
InlineNode <(anonymous)> at [9,9] [0+0+0 41.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [9,9 41.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [9,9 41.53125x18] baseline: 13.796875
"WHF!"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,30] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div.string-no-fallback> at [9,31] [0+1+0 100 0+1+682] [0+1+0 20 0+1+0] children: not-inline
@ -20,7 +20,7 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x66]
PaintableWithLines (BlockContainer<DIV>.string) [8,8 102x22]
PaintableWithLines (InlineNode(anonymous)) [9,9 41.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,30 784x0]
PaintableWithLines (BlockContainer<DIV>.string-no-fallback) [8,30 102x22]
PaintableWithLines (BlockContainer(anonymous)) [8,52 784x0]

View file

@ -6,172 +6,172 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 5, rect: [36.8125,16 44.75x18] baseline: 13.796875
"Never"
InlineNode <(anonymous)> at [8,16] [0+0+0 28.8125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,16 6.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,16 6.34375x18] baseline: 13.796875
"1"
frag 1 from TextNode start: 0, length: 1, rect: [14.34375,16 4.34375x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 1, rect: [14.34375,16 4.34375x18] baseline: 13.796875
"."
frag 2 from TextNode start: 0, length: 1, rect: [18.6875,16 6.34375x18] baseline: 13.796875
frag 2 from GeneratedTextNode start: 0, length: 1, rect: [18.6875,16 6.34375x18] baseline: 13.796875
"1"
frag 3 from TextNode start: 0, length: 2, rect: [25.03125,16 11.78125x18] baseline: 13.796875
frag 3 from GeneratedTextNode start: 0, length: 2, rect: [25.03125,16 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <p> at [8,50] [0+0+0 784 0+0+0] [16+0+0 18 0+0+16] children: inline
frag 0 from TextNode start: 0, length: 5, rect: [39.28125,50 52.15625x18] baseline: 13.796875
"Gonna"
InlineNode <(anonymous)> at [8,50] [0+0+0 31.28125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,50 6.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,50 6.34375x18] baseline: 13.796875
"1"
frag 1 from TextNode start: 0, length: 1, rect: [14.34375,50 4.34375x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 1, rect: [14.34375,50 4.34375x18] baseline: 13.796875
"."
frag 2 from TextNode start: 0, length: 1, rect: [18.6875,50 8.8125x18] baseline: 13.796875
frag 2 from GeneratedTextNode start: 0, length: 1, rect: [18.6875,50 8.8125x18] baseline: 13.796875
"2"
frag 3 from TextNode start: 0, length: 2, rect: [27.5,50 11.78125x18] baseline: 13.796875
frag 3 from GeneratedTextNode start: 0, length: 2, rect: [27.5,50 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <p> at [8,84] [0+0+0 784 0+0+0] [16+0+0 18 0+0+16] children: inline
frag 0 from TextNode start: 0, length: 4, rect: [39.5625,84 34.71875x18] baseline: 13.796875
"Give"
InlineNode <(anonymous)> at [8,84] [0+0+0 31.5625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,84 6.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,84 6.34375x18] baseline: 13.796875
"1"
frag 1 from TextNode start: 0, length: 1, rect: [14.34375,84 4.34375x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 1, rect: [14.34375,84 4.34375x18] baseline: 13.796875
"."
frag 2 from TextNode start: 0, length: 1, rect: [18.6875,84 9.09375x18] baseline: 13.796875
frag 2 from GeneratedTextNode start: 0, length: 1, rect: [18.6875,84 9.09375x18] baseline: 13.796875
"3"
frag 3 from TextNode start: 0, length: 2, rect: [27.78125,84 11.78125x18] baseline: 13.796875
frag 3 from GeneratedTextNode start: 0, length: 2, rect: [27.78125,84 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <p> at [8,118] [0+0+0 784 0+0+0] [16+0+0 18 0+0+16] children: inline
frag 0 from TextNode start: 0, length: 3, rect: [38.21875,118 31.21875x18] baseline: 13.796875
"You"
InlineNode <(anonymous)> at [8,118] [0+0+0 30.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,118 6.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,118 6.34375x18] baseline: 13.796875
"1"
frag 1 from TextNode start: 0, length: 1, rect: [14.34375,118 4.34375x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 1, rect: [14.34375,118 4.34375x18] baseline: 13.796875
"."
frag 2 from TextNode start: 0, length: 1, rect: [18.6875,118 7.75x18] baseline: 13.796875
frag 2 from GeneratedTextNode start: 0, length: 1, rect: [18.6875,118 7.75x18] baseline: 13.796875
"4"
frag 3 from TextNode start: 0, length: 2, rect: [26.4375,118 11.78125x18] baseline: 13.796875
frag 3 from GeneratedTextNode start: 0, length: 2, rect: [26.4375,118 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <p> at [8,152] [0+0+0 784 0+0+0] [16+0+0 18 0+0+16] children: inline
frag 0 from TextNode start: 0, length: 2, rect: [38.921875,152 20.71875x18] baseline: 13.796875
"Up"
InlineNode <(anonymous)> at [8,152] [0+0+0 30.921875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,152 6.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,152 6.34375x18] baseline: 13.796875
"1"
frag 1 from TextNode start: 0, length: 1, rect: [14.34375,152 4.34375x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 1, rect: [14.34375,152 4.34375x18] baseline: 13.796875
"."
frag 2 from TextNode start: 0, length: 1, rect: [18.6875,152 8.453125x18] baseline: 13.796875
frag 2 from GeneratedTextNode start: 0, length: 1, rect: [18.6875,152 8.453125x18] baseline: 13.796875
"5"
frag 3 from TextNode start: 0, length: 2, rect: [27.140625,152 11.78125x18] baseline: 13.796875
frag 3 from GeneratedTextNode start: 0, length: 2, rect: [27.140625,152 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <div> at [8,186] [0+0+0 784 0+0+0] [0+0+0 154 0+0+0] children: not-inline
BlockContainer <p> at [8,186] [0+0+0 784 0+0+0] [16+0+0 18 0+0+16] children: inline
frag 0 from TextNode start: 0, length: 5, rect: [39.28125,186 44.75x18] baseline: 13.796875
"Never"
InlineNode <(anonymous)> at [8,186] [0+0+0 31.28125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,186 8.8125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,186 8.8125x18] baseline: 13.796875
"2"
frag 1 from TextNode start: 0, length: 1, rect: [16.8125,186 4.34375x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 1, rect: [16.8125,186 4.34375x18] baseline: 13.796875
"."
frag 2 from TextNode start: 0, length: 1, rect: [21.15625,186 6.34375x18] baseline: 13.796875
frag 2 from GeneratedTextNode start: 0, length: 1, rect: [21.15625,186 6.34375x18] baseline: 13.796875
"1"
frag 3 from TextNode start: 0, length: 2, rect: [27.5,186 11.78125x18] baseline: 13.796875
frag 3 from GeneratedTextNode start: 0, length: 2, rect: [27.5,186 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <p> at [8,220] [0+0+0 784 0+0+0] [16+0+0 18 0+0+16] children: inline
frag 0 from TextNode start: 0, length: 5, rect: [41.75,220 52.15625x18] baseline: 13.796875
"Gonna"
InlineNode <(anonymous)> at [8,220] [0+0+0 33.75 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,220 8.8125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,220 8.8125x18] baseline: 13.796875
"2"
frag 1 from TextNode start: 0, length: 1, rect: [16.8125,220 4.34375x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 1, rect: [16.8125,220 4.34375x18] baseline: 13.796875
"."
frag 2 from TextNode start: 0, length: 1, rect: [21.15625,220 8.8125x18] baseline: 13.796875
frag 2 from GeneratedTextNode start: 0, length: 1, rect: [21.15625,220 8.8125x18] baseline: 13.796875
"2"
frag 3 from TextNode start: 0, length: 2, rect: [29.96875,220 11.78125x18] baseline: 13.796875
frag 3 from GeneratedTextNode start: 0, length: 2, rect: [29.96875,220 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <p> at [8,254] [0+0+0 784 0+0+0] [16+0+0 18 0+0+16] children: inline
frag 0 from TextNode start: 0, length: 3, rect: [42.03125,254 26.4375x18] baseline: 13.796875
"Let"
InlineNode <(anonymous)> at [8,254] [0+0+0 34.03125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,254 8.8125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,254 8.8125x18] baseline: 13.796875
"2"
frag 1 from TextNode start: 0, length: 1, rect: [16.8125,254 4.34375x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 1, rect: [16.8125,254 4.34375x18] baseline: 13.796875
"."
frag 2 from TextNode start: 0, length: 1, rect: [21.15625,254 9.09375x18] baseline: 13.796875
frag 2 from GeneratedTextNode start: 0, length: 1, rect: [21.15625,254 9.09375x18] baseline: 13.796875
"3"
frag 3 from TextNode start: 0, length: 2, rect: [30.25,254 11.78125x18] baseline: 13.796875
frag 3 from GeneratedTextNode start: 0, length: 2, rect: [30.25,254 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <p> at [8,288] [0+0+0 784 0+0+0] [16+0+0 18 0+0+16] children: inline
frag 0 from TextNode start: 0, length: 3, rect: [40.6875,288 31.21875x18] baseline: 13.796875
"You"
InlineNode <(anonymous)> at [8,288] [0+0+0 32.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,288 8.8125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,288 8.8125x18] baseline: 13.796875
"2"
frag 1 from TextNode start: 0, length: 1, rect: [16.8125,288 4.34375x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 1, rect: [16.8125,288 4.34375x18] baseline: 13.796875
"."
frag 2 from TextNode start: 0, length: 1, rect: [21.15625,288 7.75x18] baseline: 13.796875
frag 2 from GeneratedTextNode start: 0, length: 1, rect: [21.15625,288 7.75x18] baseline: 13.796875
"4"
frag 3 from TextNode start: 0, length: 2, rect: [28.90625,288 11.78125x18] baseline: 13.796875
frag 3 from GeneratedTextNode start: 0, length: 2, rect: [28.90625,288 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <p> at [8,322] [0+0+0 784 0+0+0] [16+0+0 18 0+0+16] children: inline
frag 0 from TextNode start: 0, length: 4, rect: [41.390625,322 42.328125x18] baseline: 13.796875
"Down"
InlineNode <(anonymous)> at [8,322] [0+0+0 33.390625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,322 8.8125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,322 8.8125x18] baseline: 13.796875
"2"
frag 1 from TextNode start: 0, length: 1, rect: [16.8125,322 4.34375x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 1, rect: [16.8125,322 4.34375x18] baseline: 13.796875
"."
frag 2 from TextNode start: 0, length: 1, rect: [21.15625,322 8.453125x18] baseline: 13.796875
frag 2 from GeneratedTextNode start: 0, length: 1, rect: [21.15625,322 8.453125x18] baseline: 13.796875
"5"
frag 3 from TextNode start: 0, length: 2, rect: [29.609375,322 11.78125x18] baseline: 13.796875
frag 3 from GeneratedTextNode start: 0, length: 2, rect: [29.609375,322 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [8,356] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -182,74 +182,74 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<DIV>) [8,16 784x154]
PaintableWithLines (BlockContainer<P>) [8,16 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,16 28.8125x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer<P>) [8,50 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,50 31.28125x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer<P>) [8,84 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,84 31.5625x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer<P>) [8,118 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,118 30.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer<P>) [8,152 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,152 30.921875x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer<DIV>) [8,186 784x154]
PaintableWithLines (BlockContainer<P>) [8,186 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,186 31.28125x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer<P>) [8,220 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,220 33.75x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer<P>) [8,254 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,254 34.03125x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer<P>) [8,288 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,288 32.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer<P>) [8,322 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,322 33.390625x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [8,356 784x0]

View file

@ -3,316 +3,316 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <body> at [8,8] [8+0+0 784 0+0+8] [8+0+0 792 0+0+8] children: not-inline
BlockContainer <div> at [8,8] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,8] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,8 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,8 5.84375x18] baseline: 13.796875
"零"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,26] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,26] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,26 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,26 5.84375x18] baseline: 13.796875
"一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,44] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,44] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,44] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,44 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,44 5.84375x18] baseline: 13.796875
"二"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,62] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,62] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,62] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,62 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,62 5.84375x18] baseline: 13.796875
"三"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,80] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,80] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,80] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,80 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,80 5.84375x18] baseline: 13.796875
"四"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,98] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,98] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,98] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,98 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,98 5.84375x18] baseline: 13.796875
"五"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,116] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,116] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,116] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,116 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,116 5.84375x18] baseline: 13.796875
"六"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,134] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,134] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,134] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,134 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,134 5.84375x18] baseline: 13.796875
"七"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,152] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,152] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,152] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,152 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,152 5.84375x18] baseline: 13.796875
"八"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,170] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,170] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,170] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,170 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,170 5.84375x18] baseline: 13.796875
"九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,188] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,188] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,188] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,188 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,188 5.84375x18] baseline: 13.796875
"十"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,206] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,206] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,206] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
"一百"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,224] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,224] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,224] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,224 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,224 11.6875x18] baseline: 13.796875
"一千"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,242] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,242] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,242] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,242 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,242 11.6875x18] baseline: 13.796875
"十一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,260] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,260] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,260] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,260 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,260 17.53125x18] baseline: 13.796875
"九十九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,278] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,278] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,278] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,278 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,278 23.375x18] baseline: 13.796875
"一百零一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,296] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,296] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,296] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,296 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,296 11.6875x18] baseline: 13.796875
"二百"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,314] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,314] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,314] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,314 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,314 23.375x18] baseline: 13.796875
"六千零一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,332] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
TextNode <#text> (not painted)
BlockContainer <div> at [8,332] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,332] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,332 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,332 11.6875x18] baseline: 13.796875
"一萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,350] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,350] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,350] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,350 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,350 11.6875x18] baseline: 13.796875
"二萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,368] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,368] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,368] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,368 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,368 11.6875x18] baseline: 13.796875
"五萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,386] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,386] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,386] [0+0+0 52.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 9, rect: [8,386 52.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 9, rect: [8,386 52.59375x18] baseline: 13.796875
"九萬九千九百九十九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,404] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
TextNode <#text> (not painted)
BlockContainer <div> at [8,404] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,404] [0+0+0 52.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 9, rect: [8,404 52.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 9, rect: [8,404 52.59375x18] baseline: 13.796875
"一萬二千三百四十五"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,422] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,422] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,422] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,422 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,422 23.375x18] baseline: 13.796875
"一萬零一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,440] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,440] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,440] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,440 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,440 23.375x18] baseline: 13.796875
"一萬零十"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,458] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,458] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,458] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,458 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,458 29.21875x18] baseline: 13.796875
"一萬零一百"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,476] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,476] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,476] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,476 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,476 23.375x18] baseline: 13.796875
"一萬一千"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,494] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
TextNode <#text> (not painted)
BlockContainer <div> at [8,494] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,494] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,494 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,494 11.6875x18] baseline: 13.796875
"一億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,512] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,512] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,512] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,512 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,512 11.6875x18] baseline: 13.796875
"二億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,530] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,530] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,530] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,530 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,530 11.6875x18] baseline: 13.796875
"五億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,548] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,548] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,548] [0+0+0 99.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 17, rect: [8,548 99.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 17, rect: [8,548 99.34375x18] baseline: 13.796875
"九億九千九百九十九萬九千九百九十九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,566] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
TextNode <#text> (not painted)
BlockContainer <div> at [8,566] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,566] [0+0+0 99.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 17, rect: [8,566 99.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 17, rect: [8,566 99.34375x18] baseline: 13.796875
"一億二千三百四十五萬六千七百八十九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,584] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,584] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,584] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,584 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,584 23.375x18] baseline: 13.796875
"一億零一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,602] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,602] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,602] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,602 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,602 29.21875x18] baseline: 13.796875
"一億零一萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,620] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,620] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,620] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,620 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,620 29.21875x18] baseline: 13.796875
"一億零十萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,638] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,638] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,638] [0+0+0 35.0625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,638 35.0625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,638 35.0625x18] baseline: 13.796875
"一億零一百萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,656] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,656] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,656] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,656 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,656 29.21875x18] baseline: 13.796875
"一億一千萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,674] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
TextNode <#text> (not painted)
BlockContainer <div> at [8,674] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,674] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,674 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,674 11.6875x18] baseline: 13.796875
"十億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,692] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,692] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,692] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,692 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,692 17.53125x18] baseline: 13.796875
"一百萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,710] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,710] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,710] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,710 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,710 11.6875x18] baseline: 13.796875
"一千"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,728] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
TextNode <#text> (not painted)
BlockContainer <div> at [8,728] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,728] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,728 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,728 17.53125x18] baseline: 13.796875
"負一萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,746] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,746] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,746] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,746 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,746 17.53125x18] baseline: 13.796875
"負一億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,764] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,764] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,764] [0+0+0 116.875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 20, rect: [8,764 116.875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 20, rect: [8,764 116.875x18] baseline: 13.796875
"負二十一億四千七百四十八萬三千六百四十八"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,782] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,782] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,782] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,782 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,782 11.6875x18] baseline: 13.796875
"負一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,800] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -321,179 +321,179 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600] overflow: [0,0 800x808]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x792]
PaintableWithLines (BlockContainer<DIV>) [8,8 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,8 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,26 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,26 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,44 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,44 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,44 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,62 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,62 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,62 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,80 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,80 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,80 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,98 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,98 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,98 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,116 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,116 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,116 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,134 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,134 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,134 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,152 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,152 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,152 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,170 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,170 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,170 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,188 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,188 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,188 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,206 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,206 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,206 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,224 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,224 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,224 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,242 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,242 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,242 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,260 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,260 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,260 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,278 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,278 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,278 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,296 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,296 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,296 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,314 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,314 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,314 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,332 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,332 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,332 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,350 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,350 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,350 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,368 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,368 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,368 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,386 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,386 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,386 52.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,404 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,404 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,404 52.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,422 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,422 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,422 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,440 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,440 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,440 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,458 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,458 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,458 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,476 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,476 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,476 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,494 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,494 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,494 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,512 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,512 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,512 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,530 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,530 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,530 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,548 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,548 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,548 99.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,566 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,566 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,566 99.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,584 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,584 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,584 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,602 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,602 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,602 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,620 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,620 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,620 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,638 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,638 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,638 35.0625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,656 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,656 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,656 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,674 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,674 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,674 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,692 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,692 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,692 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,710 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,710 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,710 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,728 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,728 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,728 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,746 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,746 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,746 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,764 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,764 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,764 116.875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,782 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,782 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,782 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,800 784x0]
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)

View file

@ -3,184 +3,184 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <body> at [8,8] [8+0+0 784 0+0+8] [8+0+0 468 0+0+8] children: not-inline
BlockContainer <div> at [8,8] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,8] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,8 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,8 11.6875x18] baseline: 13.796875
"壱萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,26] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,26] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,26 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,26 11.6875x18] baseline: 13.796875
"弐萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,44] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,44] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,44] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,44 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,44 11.6875x18] baseline: 13.796875
"伍萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,62] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,62] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,62] [0+0+0 52.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 9, rect: [8,62 52.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 9, rect: [8,62 52.59375x18] baseline: 13.796875
"九萬九阡九百九拾九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,80] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,80] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,80] [0+0+0 52.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 9, rect: [8,80 52.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 9, rect: [8,80 52.59375x18] baseline: 13.796875
"壱萬弐阡参百四拾伍"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,98] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,98] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,98] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,98 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,98 17.53125x18] baseline: 13.796875
"壱萬壱"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,116] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,116] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,116] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,116 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,116 23.375x18] baseline: 13.796875
"壱萬壱拾"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,134] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,134] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,134] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,134 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,134 23.375x18] baseline: 13.796875
"壱萬壱百"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,152] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,152] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,152] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,152 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,152 23.375x18] baseline: 13.796875
"壱萬壱阡"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,170] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,170] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,170] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,170 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,170 11.6875x18] baseline: 13.796875
"壱億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,188] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,188] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,188] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,188 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,188 11.6875x18] baseline: 13.796875
"弐億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,206] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,206] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,206] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
"伍億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,224] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,224] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,224] [0+0+0 99.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 17, rect: [8,224 99.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 17, rect: [8,224 99.34375x18] baseline: 13.796875
"九億九阡九百九拾九萬九阡九百九拾九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,242] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,242] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,242] [0+0+0 99.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 17, rect: [8,242 99.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 17, rect: [8,242 99.34375x18] baseline: 13.796875
"壱億弐阡参百四拾伍萬六阡七百八拾九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,260] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,260] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,260] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,260 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,260 17.53125x18] baseline: 13.796875
"壱億壱"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,278] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,278] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,278] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,278 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,278 23.375x18] baseline: 13.796875
"壱億壱萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,296] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,296] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,296] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,296 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,296 29.21875x18] baseline: 13.796875
"壱億壱拾萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,314] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,314] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,314] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,314 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,314 29.21875x18] baseline: 13.796875
"壱億壱百萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,332] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,332] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,332] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,332 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,332 29.21875x18] baseline: 13.796875
"壱億壱阡萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,350] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,350] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,350] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,350 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,350 17.53125x18] baseline: 13.796875
"壱拾億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,368] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,368] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,368] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,368 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,368 17.53125x18] baseline: 13.796875
"壱百萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,386] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,386] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,386] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,386 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,386 11.6875x18] baseline: 13.796875
"壱阡"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,404] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,404] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,404] [0+0+0 35.0625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,404 35.0625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,404 35.0625x18] baseline: 13.796875
"マイナス壱萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,422] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,422] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,422] [0+0+0 35.0625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,422 35.0625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,422 35.0625x18] baseline: 13.796875
"マイナス壱億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,440] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,440] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,440] [0+0+0 134.40625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 23, rect: [8,440 134.40625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 23, rect: [8,440 134.40625x18] baseline: 13.796875
"マイナス弐拾壱億四阡七百四拾八萬参阡六百四拾八"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,458] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,458] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,458] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,458 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,458 29.21875x18] baseline: 13.796875
"マイナス壱"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,476] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -189,107 +189,107 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x468]
PaintableWithLines (BlockContainer<DIV>) [8,8 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,8 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,26 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,26 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,44 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,44 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,44 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,62 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,62 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,62 52.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,80 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,80 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,80 52.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,98 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,98 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,98 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,116 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,116 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,116 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,134 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,134 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,134 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,152 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,152 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,152 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,170 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,170 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,170 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,188 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,188 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,188 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,206 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,206 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,206 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,224 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,224 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,224 99.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,242 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,242 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,242 99.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,260 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,260 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,260 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,278 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,278 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,278 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,296 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,296 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,296 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,314 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,314 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,314 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,332 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,332 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,332 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,350 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,350 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,350 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,368 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,368 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,368 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,386 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,386 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,386 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,404 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,404 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,404 35.0625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,422 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,422 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,422 35.0625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,440 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,440 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,440 134.40625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,458 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,458 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,458 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,476 784x0]
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)

View file

@ -3,184 +3,184 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <body> at [8,8] [8+0+0 784 0+0+8] [8+0+0 468 0+0+8] children: not-inline
BlockContainer <div> at [8,8] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,8] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,8 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,8 11.6875x18] baseline: 13.796875
"一万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,26] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,26] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,26 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,26 11.6875x18] baseline: 13.796875
"二万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,44] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,44] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,44] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,44 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,44 11.6875x18] baseline: 13.796875
"五万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,62] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,62] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,62] [0+0+0 52.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 9, rect: [8,62 52.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 9, rect: [8,62 52.59375x18] baseline: 13.796875
"九万九千九百九十九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,80] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,80] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,80] [0+0+0 52.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 9, rect: [8,80 52.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 9, rect: [8,80 52.59375x18] baseline: 13.796875
"一万二千三百四十五"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,98] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,98] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,98] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,98 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,98 17.53125x18] baseline: 13.796875
"一万一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,116] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,116] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,116] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,116 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,116 17.53125x18] baseline: 13.796875
"一万十"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,134] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,134] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,134] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,134 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,134 17.53125x18] baseline: 13.796875
"一万百"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,152] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,152] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,152] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,152 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,152 17.53125x18] baseline: 13.796875
"一万千"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,170] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,170] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,170] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,170 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,170 11.6875x18] baseline: 13.796875
"一億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,188] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,188] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,188] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,188 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,188 11.6875x18] baseline: 13.796875
"二億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,206] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,206] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,206] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
"五億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,224] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,224] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,224] [0+0+0 99.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 17, rect: [8,224 99.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 17, rect: [8,224 99.34375x18] baseline: 13.796875
"九億九千九百九十九万九千九百九十九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,242] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,242] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,242] [0+0+0 99.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 17, rect: [8,242 99.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 17, rect: [8,242 99.34375x18] baseline: 13.796875
"一億二千三百四十五万六千七百八十九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,260] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,260] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,260] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,260 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,260 17.53125x18] baseline: 13.796875
"一億一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,278] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,278] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,278] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,278 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,278 23.375x18] baseline: 13.796875
"一億一万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,296] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,296] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,296] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,296 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,296 23.375x18] baseline: 13.796875
"一億十万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,314] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,314] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,314] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,314 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,314 23.375x18] baseline: 13.796875
"一億百万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,332] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,332] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,332] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,332 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,332 23.375x18] baseline: 13.796875
"一億千万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,350] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,350] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,350] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,350 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,350 11.6875x18] baseline: 13.796875
"十億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,368] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,368] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,368] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,368 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,368 11.6875x18] baseline: 13.796875
"百万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,386] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,386] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,386] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,386 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,386 5.84375x18] baseline: 13.796875
"千"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,404] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,404] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,404] [0+0+0 35.0625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,404 35.0625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,404 35.0625x18] baseline: 13.796875
"マイナス一万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,422] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,422] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,422] [0+0+0 35.0625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,422 35.0625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,422 35.0625x18] baseline: 13.796875
"マイナス一億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,440] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,440] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,440] [0+0+0 134.40625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 23, rect: [8,440 134.40625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 23, rect: [8,440 134.40625x18] baseline: 13.796875
"マイナス二十一億四千七百四十八万三千六百四十八"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,458] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,458] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,458] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,458 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,458 29.21875x18] baseline: 13.796875
"マイナス一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,476] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -189,107 +189,107 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x468]
PaintableWithLines (BlockContainer<DIV>) [8,8 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,8 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,26 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,26 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,44 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,44 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,44 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,62 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,62 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,62 52.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,80 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,80 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,80 52.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,98 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,98 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,98 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,116 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,116 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,116 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,134 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,134 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,134 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,152 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,152 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,152 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,170 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,170 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,170 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,188 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,188 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,188 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,206 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,206 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,206 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,224 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,224 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,224 99.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,242 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,242 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,242 99.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,260 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,260 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,260 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,278 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,278 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,278 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,296 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,296 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,296 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,314 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,314 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,314 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,332 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,332 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,332 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,350 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,350 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,350 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,368 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,368 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,368 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,386 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,386 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,386 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,404 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,404 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,404 35.0625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,422 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,422 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,422 35.0625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,440 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,440 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,440 134.40625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,458 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,458 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,458 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,476 784x0]
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)

View file

@ -3,186 +3,186 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <body> at [8,8] [8+0+0 784 0+0+8] [8+0+0 468 0+0+8] children: not-inline
BlockContainer <div> at [8,8] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,8] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,8 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,8 11.6875x18] baseline: 13.796875
"일만"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,26] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,26] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,26 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,26 11.6875x18] baseline: 13.796875
"이만"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,44] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,44] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,44] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,44 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,44 11.6875x18] baseline: 13.796875
"오만"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,62] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,62] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,62] [0+0+0 60.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 10, rect: [8,62 60.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 10, rect: [8,62 60.59375x18] baseline: 13.796875
"구만 구천구백구십구"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,80] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,80] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,80] [0+0+0 60.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 10, rect: [8,80 60.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 10, rect: [8,80 60.59375x18] baseline: 13.796875
"일만 이천삼백사십오"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,98] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,98] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,98] [0+0+0 25.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,98 25.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,98 25.53125x18] baseline: 13.796875
"일만 일"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,116] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,116] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,116] [0+0+0 31.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,116 31.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,116 31.375x18] baseline: 13.796875
"일만 일십"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,134] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,134] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,134] [0+0+0 31.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,134 31.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,134 31.375x18] baseline: 13.796875
"일만 일백"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,152] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,152] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,152] [0+0+0 31.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,152 31.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,152 31.375x18] baseline: 13.796875
"일만 일천"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,170] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,170] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,170] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,170 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,170 11.6875x18] baseline: 13.796875
"일억"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,188] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,188] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,188] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,188 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,188 11.6875x18] baseline: 13.796875
"이억"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,206] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,206] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,206] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
"오억"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,224] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,224] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,224] [0+0+0 115.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 19, rect: [8,224 115.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 19, rect: [8,224 115.34375x18] baseline: 13.796875
"구억 구천구백구십구만 구천구백구십구"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,242] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,242] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,242] [0+0+0 115.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 19, rect: [8,242 115.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 19, rect: [8,242 115.34375x18] baseline: 13.796875
"일억 이천삼백사십오만 육천칠백팔십구"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,260] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,260] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,260] [0+0+0 25.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,260 19.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,260 19.6875x18] baseline: 13.796875
"일억 "
frag 1 from TextNode start: 4, length: 1, rect: [27.6875,260 5.84375x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 4, length: 1, rect: [27.6875,260 5.84375x18] baseline: 13.796875
"일"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,278] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,278] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,278] [0+0+0 31.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,278 31.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,278 31.375x18] baseline: 13.796875
"일억 일만"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,296] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,296] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,296] [0+0+0 37.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,296 37.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,296 37.21875x18] baseline: 13.796875
"일억 일십만"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,314] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,314] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,314] [0+0+0 37.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,314 37.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,314 37.21875x18] baseline: 13.796875
"일억 일백만"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,332] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,332] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,332] [0+0+0 37.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,332 37.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,332 37.21875x18] baseline: 13.796875
"일억 일천만"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,350] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,350] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,350] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,350 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,350 17.53125x18] baseline: 13.796875
"일십억"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,368] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,368] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,368] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,368 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,368 17.53125x18] baseline: 13.796875
"일백만"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,386] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,386] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,386] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,386 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,386 11.6875x18] baseline: 13.796875
"일천"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,404] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,404] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,404] [0+0+0 43.0625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 7, rect: [8,404 43.0625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 7, rect: [8,404 43.0625x18] baseline: 13.796875
"마이너스 일만"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,422] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,422] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,422] [0+0+0 43.0625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 7, rect: [8,422 43.0625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 7, rect: [8,422 43.0625x18] baseline: 13.796875
"마이너스 일억"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,440] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,440] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,440] [0+0+0 158.40625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 26, rect: [8,440 158.40625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 26, rect: [8,440 158.40625x18] baseline: 13.796875
"마이너스 이십일억 사천칠백사십팔만 삼천육백사십팔"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,458] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,458] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,458] [0+0+0 37.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,458 37.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,458 37.21875x18] baseline: 13.796875
"마이너스 일"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,476] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -191,107 +191,107 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x468]
PaintableWithLines (BlockContainer<DIV>) [8,8 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,8 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,26 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,26 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,44 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,44 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,44 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,62 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,62 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,62 60.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,80 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,80 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,80 60.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,98 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,98 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,98 25.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,116 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,116 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,116 31.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,134 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,134 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,134 31.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,152 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,152 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,152 31.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,170 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,170 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,170 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,188 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,188 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,188 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,206 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,206 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,206 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,224 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,224 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,224 115.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,242 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,242 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,242 115.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,260 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,260 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,260 25.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,278 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,278 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,278 31.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,296 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,296 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,296 37.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,314 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,314 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,314 37.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,332 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,332 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,332 37.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,350 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,350 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,350 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,368 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,368 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,368 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,386 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,386 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,386 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,404 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,404 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,404 43.0625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,422 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,422 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,422 43.0625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,440 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,440 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,440 158.40625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,458 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,458 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,458 37.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,476 784x0]
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)

View file

@ -3,186 +3,186 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <body> at [8,8] [8+0+0 784 0+0+8] [8+0+0 468 0+0+8] children: not-inline
BlockContainer <div> at [8,8] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,8] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,8 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,8 11.6875x18] baseline: 13.796875
"壹萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,26] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,26] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,26 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,26 11.6875x18] baseline: 13.796875
"貳萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,44] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,44] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,44] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,44 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,44 11.6875x18] baseline: 13.796875
"五萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,62] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,62] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,62] [0+0+0 60.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 10, rect: [8,62 60.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 10, rect: [8,62 60.59375x18] baseline: 13.796875
"九萬 九仟九百九拾九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,80] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,80] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,80] [0+0+0 60.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 10, rect: [8,80 60.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 10, rect: [8,80 60.59375x18] baseline: 13.796875
"壹萬 貳仟參百四拾五"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,98] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,98] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,98] [0+0+0 25.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,98 25.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,98 25.53125x18] baseline: 13.796875
"壹萬 壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,116] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,116] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,116] [0+0+0 31.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,116 31.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,116 31.375x18] baseline: 13.796875
"壹萬 壹拾"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,134] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,134] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,134] [0+0+0 31.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,134 31.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,134 31.375x18] baseline: 13.796875
"壹萬 壹百"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,152] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,152] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,152] [0+0+0 31.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,152 31.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,152 31.375x18] baseline: 13.796875
"壹萬 壹仟"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,170] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,170] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,170] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,170 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,170 11.6875x18] baseline: 13.796875
"壹億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,188] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,188] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,188] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,188 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,188 11.6875x18] baseline: 13.796875
"貳億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,206] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,206] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,206] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
"五億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,224] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,224] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,224] [0+0+0 115.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 19, rect: [8,224 115.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 19, rect: [8,224 115.34375x18] baseline: 13.796875
"九億 九仟九百九拾九萬 九仟九百九拾九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,242] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,242] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,242] [0+0+0 115.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 19, rect: [8,242 115.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 19, rect: [8,242 115.34375x18] baseline: 13.796875
"壹億 貳仟參百四拾五萬 六仟七百八拾九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,260] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,260] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,260] [0+0+0 25.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,260 19.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,260 19.6875x18] baseline: 13.796875
"壹億 "
frag 1 from TextNode start: 4, length: 1, rect: [27.6875,260 5.84375x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 4, length: 1, rect: [27.6875,260 5.84375x18] baseline: 13.796875
"壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,278] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,278] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,278] [0+0+0 31.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,278 31.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,278 31.375x18] baseline: 13.796875
"壹億 壹萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,296] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,296] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,296] [0+0+0 37.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,296 37.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,296 37.21875x18] baseline: 13.796875
"壹億 壹拾萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,314] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,314] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,314] [0+0+0 37.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,314 37.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,314 37.21875x18] baseline: 13.796875
"壹億 壹百萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,332] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,332] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,332] [0+0+0 37.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,332 37.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,332 37.21875x18] baseline: 13.796875
"壹億 壹仟萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,350] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,350] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,350] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,350 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,350 17.53125x18] baseline: 13.796875
"壹拾億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,368] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,368] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,368] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,368 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,368 17.53125x18] baseline: 13.796875
"壹百萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,386] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,386] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,386] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,386 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,386 11.6875x18] baseline: 13.796875
"壹仟"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,404] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,404] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,404] [0+0+0 43.0625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 7, rect: [8,404 43.0625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 7, rect: [8,404 43.0625x18] baseline: 13.796875
"마이너스 壹萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,422] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,422] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,422] [0+0+0 43.0625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 7, rect: [8,422 43.0625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 7, rect: [8,422 43.0625x18] baseline: 13.796875
"마이너스 壹億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,440] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,440] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,440] [0+0+0 158.40625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 26, rect: [8,440 158.40625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 26, rect: [8,440 158.40625x18] baseline: 13.796875
"마이너스 貳拾壹億 四仟七百四拾八萬 參仟六百四拾八"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,458] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,458] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,458] [0+0+0 37.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,458 37.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,458 37.21875x18] baseline: 13.796875
"마이너스 壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,476] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -191,107 +191,107 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x468]
PaintableWithLines (BlockContainer<DIV>) [8,8 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,8 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,26 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,26 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,44 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,44 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,44 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,62 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,62 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,62 60.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,80 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,80 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,80 60.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,98 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,98 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,98 25.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,116 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,116 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,116 31.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,134 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,134 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,134 31.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,152 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,152 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,152 31.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,170 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,170 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,170 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,188 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,188 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,188 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,206 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,206 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,206 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,224 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,224 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,224 115.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,242 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,242 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,242 115.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,260 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,260 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,260 25.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,278 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,278 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,278 31.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,296 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,296 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,296 37.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,314 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,314 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,314 37.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,332 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,332 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,332 37.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,350 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,350 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,350 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,368 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,368 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,368 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,386 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,386 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,386 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,404 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,404 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,404 43.0625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,422 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,422 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,422 43.0625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,440 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,440 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,440 158.40625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,458 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,458 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,458 37.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,476 784x0]
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)

View file

@ -3,186 +3,186 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <body> at [8,8] [8+0+0 784 0+0+8] [8+0+0 468 0+0+8] children: not-inline
BlockContainer <div> at [8,8] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,8] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,8 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,8 11.6875x18] baseline: 13.796875
"壹萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,26] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,26] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,26 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,26 11.6875x18] baseline: 13.796875
"貳萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,44] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,44] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,44] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,44 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,44 11.6875x18] baseline: 13.796875
"五萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,62] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,62] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,62] [0+0+0 60.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 10, rect: [8,62 60.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 10, rect: [8,62 60.59375x18] baseline: 13.796875
"九萬 九仟九百九拾九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,80] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,80] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,80] [0+0+0 60.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 10, rect: [8,80 60.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 10, rect: [8,80 60.59375x18] baseline: 13.796875
"壹萬 貳仟參百四拾五"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,98] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,98] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,98] [0+0+0 25.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,98 25.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,98 25.53125x18] baseline: 13.796875
"壹萬 壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,116] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,116] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,116] [0+0+0 31.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,116 31.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,116 31.375x18] baseline: 13.796875
"壹萬 壹拾"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,134] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,134] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,134] [0+0+0 31.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,134 31.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,134 31.375x18] baseline: 13.796875
"壹萬 壹百"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,152] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,152] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,152] [0+0+0 31.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,152 31.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,152 31.375x18] baseline: 13.796875
"壹萬 壹仟"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,170] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,170] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,170] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,170 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,170 11.6875x18] baseline: 13.796875
"壹億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,188] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,188] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,188] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,188 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,188 11.6875x18] baseline: 13.796875
"貳億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,206] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,206] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,206] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
"五億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,224] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,224] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,224] [0+0+0 115.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 19, rect: [8,224 115.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 19, rect: [8,224 115.34375x18] baseline: 13.796875
"九億 九仟九百九拾九萬 九仟九百九拾九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,242] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,242] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,242] [0+0+0 115.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 19, rect: [8,242 115.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 19, rect: [8,242 115.34375x18] baseline: 13.796875
"壹億 貳仟參百四拾五萬 六仟七百八拾九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,260] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,260] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,260] [0+0+0 25.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,260 19.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,260 19.6875x18] baseline: 13.796875
"壹億 "
frag 1 from TextNode start: 4, length: 1, rect: [27.6875,260 5.84375x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 4, length: 1, rect: [27.6875,260 5.84375x18] baseline: 13.796875
"壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,278] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,278] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,278] [0+0+0 31.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,278 31.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,278 31.375x18] baseline: 13.796875
"壹億 壹萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,296] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,296] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,296] [0+0+0 37.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,296 37.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,296 37.21875x18] baseline: 13.796875
"壹億 壹拾萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,314] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,314] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,314] [0+0+0 37.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,314 37.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,314 37.21875x18] baseline: 13.796875
"壹億 壹百萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,332] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,332] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,332] [0+0+0 37.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,332 37.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,332 37.21875x18] baseline: 13.796875
"壹億 壹仟萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,350] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,350] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,350] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,350 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,350 17.53125x18] baseline: 13.796875
"壹拾億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,368] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,368] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,368] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,368 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,368 17.53125x18] baseline: 13.796875
"壹百萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,386] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,386] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,386] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,386 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,386 11.6875x18] baseline: 13.796875
"壹仟"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,404] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,404] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,404] [0+0+0 43.0625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 7, rect: [8,404 43.0625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 7, rect: [8,404 43.0625x18] baseline: 13.796875
"마이너스 壹萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,422] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,422] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,422] [0+0+0 43.0625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 7, rect: [8,422 43.0625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 7, rect: [8,422 43.0625x18] baseline: 13.796875
"마이너스 壹億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,440] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,440] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,440] [0+0+0 158.40625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 26, rect: [8,440 158.40625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 26, rect: [8,440 158.40625x18] baseline: 13.796875
"마이너스 貳拾壹億 四仟七百四拾八萬 參仟六百四拾八"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,458] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,458] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,458] [0+0+0 37.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,458 37.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,458 37.21875x18] baseline: 13.796875
"마이너스 壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,476] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -191,107 +191,107 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x468]
PaintableWithLines (BlockContainer<DIV>) [8,8 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,8 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,26 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,26 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,44 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,44 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,44 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,62 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,62 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,62 60.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,80 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,80 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,80 60.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,98 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,98 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,98 25.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,116 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,116 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,116 31.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,134 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,134 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,134 31.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,152 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,152 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,152 31.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,170 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,170 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,170 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,188 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,188 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,188 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,206 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,206 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,206 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,224 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,224 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,224 115.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,242 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,242 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,242 115.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,260 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,260 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,260 25.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,278 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,278 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,278 31.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,296 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,296 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,296 37.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,314 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,314 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,314 37.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,332 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,332 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,332 37.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,350 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,350 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,350 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,368 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,368 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,368 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,386 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,386 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,386 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,404 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,404 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,404 43.0625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,422 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,422 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,422 43.0625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,440 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,440 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,440 158.40625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,458 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,458 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,458 37.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,476 784x0]
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)

View file

@ -3,310 +3,310 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <body> at [8,8] [8+0+0 784 0+0+8] [8+0+0 792 0+0+8] children: not-inline
BlockContainer <div> at [8,8] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,8] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,8 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,8 5.84375x18] baseline: 13.796875
"零"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,26] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,26] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,26 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,26 5.84375x18] baseline: 13.796875
"壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,44] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,44] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,44] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,44 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,44 5.84375x18] baseline: 13.796875
"贰"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,62] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,62] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,62] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,62 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,62 5.84375x18] baseline: 13.796875
"叁"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,80] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,80] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,80] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,80 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,80 5.84375x18] baseline: 13.796875
"肆"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,98] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,98] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,98] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,98 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,98 5.84375x18] baseline: 13.796875
"伍"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,116] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,116] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,116] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,116 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,116 5.84375x18] baseline: 13.796875
"陆"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,134] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,134] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,134] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,134 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,134 5.84375x18] baseline: 13.796875
"柒"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,152] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,152] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,152] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,152 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,152 5.84375x18] baseline: 13.796875
"捌"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,170] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,170] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,170] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,170 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,170 5.84375x18] baseline: 13.796875
"玖"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,188] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,188] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,188] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,188 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,188 11.6875x18] baseline: 13.796875
"壹拾"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,206] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,206] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,206] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
"壹佰"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,224] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,224] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,224] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,224 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,224 11.6875x18] baseline: 13.796875
"壹仟"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,242] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,242] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,242] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,242 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,242 17.53125x18] baseline: 13.796875
"壹拾壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,260] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,260] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,260] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,260 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,260 17.53125x18] baseline: 13.796875
"玖拾玖"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,278] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,278] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,278] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,278 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,278 23.375x18] baseline: 13.796875
"壹佰零壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,296] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,296] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,296] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,296 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,296 11.6875x18] baseline: 13.796875
"贰佰"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,314] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,314] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,314] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,314 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,314 23.375x18] baseline: 13.796875
"陆仟零壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,332] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,332] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,332] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,332 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,332 11.6875x18] baseline: 13.796875
"壹万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,350] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,350] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,350] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,350 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,350 11.6875x18] baseline: 13.796875
"贰万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,368] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,368] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,368] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,368 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,368 11.6875x18] baseline: 13.796875
"伍万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,386] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,386] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,386] [0+0+0 52.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 9, rect: [8,386 52.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 9, rect: [8,386 52.59375x18] baseline: 13.796875
"玖万玖仟玖佰玖拾玖"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,404] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,404] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,404] [0+0+0 52.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 9, rect: [8,404 52.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 9, rect: [8,404 52.59375x18] baseline: 13.796875
"壹万贰仟叁佰肆拾伍"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,422] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,422] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,422] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,422 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,422 23.375x18] baseline: 13.796875
"壹万零壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,440] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,440] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,440] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,440 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,440 29.21875x18] baseline: 13.796875
"壹万零壹拾"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,458] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,458] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,458] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,458 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,458 29.21875x18] baseline: 13.796875
"壹万零壹佰"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,476] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,476] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,476] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,476 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,476 23.375x18] baseline: 13.796875
"壹万壹仟"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,494] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,494] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,494] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,494 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,494 11.6875x18] baseline: 13.796875
"壹亿"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,512] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,512] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,512] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,512 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,512 11.6875x18] baseline: 13.796875
"贰亿"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,530] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,530] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,530] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,530 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,530 11.6875x18] baseline: 13.796875
"伍亿"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,548] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,548] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,548] [0+0+0 99.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 17, rect: [8,548 99.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 17, rect: [8,548 99.34375x18] baseline: 13.796875
"玖亿玖仟玖佰玖拾玖万玖仟玖佰玖拾玖"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,566] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,566] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,566] [0+0+0 99.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 17, rect: [8,566 99.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 17, rect: [8,566 99.34375x18] baseline: 13.796875
"壹亿贰仟叁佰肆拾伍万陆仟柒佰捌拾玖"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,584] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,584] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,584] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,584 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,584 23.375x18] baseline: 13.796875
"壹亿零壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,602] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,602] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,602] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,602 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,602 29.21875x18] baseline: 13.796875
"壹亿零壹万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,620] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,620] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,620] [0+0+0 35.0625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,620 35.0625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,620 35.0625x18] baseline: 13.796875
"壹亿零壹拾万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,638] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,638] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,638] [0+0+0 35.0625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,638 35.0625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,638 35.0625x18] baseline: 13.796875
"壹亿零壹佰万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,656] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,656] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,656] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,656 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,656 29.21875x18] baseline: 13.796875
"壹亿壹仟万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,674] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,674] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,674] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,674 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,674 17.53125x18] baseline: 13.796875
"壹拾亿"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,692] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,692] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,692] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,692 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,692 17.53125x18] baseline: 13.796875
"壹佰万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,710] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,710] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,710] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,710 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,710 11.6875x18] baseline: 13.796875
"壹仟"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,728] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,728] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,728] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,728 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,728 17.53125x18] baseline: 13.796875
"负壹万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,746] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,746] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,746] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,746 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,746 17.53125x18] baseline: 13.796875
"负壹亿"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,764] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,764] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,764] [0+0+0 116.875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 20, rect: [8,764 116.875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 20, rect: [8,764 116.875x18] baseline: 13.796875
"负贰拾壹亿肆仟柒佰肆拾捌万叁仟陆佰肆拾捌"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,782] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,782] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,782] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,782 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,782 11.6875x18] baseline: 13.796875
"负壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,800] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -315,179 +315,179 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600] overflow: [0,0 800x808]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x792]
PaintableWithLines (BlockContainer<DIV>) [8,8 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,8 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,26 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,26 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,44 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,44 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,44 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,62 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,62 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,62 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,80 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,80 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,80 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,98 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,98 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,98 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,116 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,116 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,116 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,134 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,134 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,134 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,152 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,152 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,152 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,170 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,170 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,170 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,188 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,188 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,188 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,206 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,206 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,206 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,224 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,224 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,224 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,242 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,242 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,242 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,260 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,260 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,260 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,278 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,278 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,278 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,296 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,296 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,296 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,314 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,314 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,314 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,332 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,332 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,332 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,350 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,350 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,350 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,368 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,368 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,368 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,386 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,386 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,386 52.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,404 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,404 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,404 52.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,422 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,422 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,422 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,440 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,440 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,440 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,458 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,458 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,458 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,476 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,476 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,476 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,494 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,494 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,494 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,512 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,512 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,512 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,530 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,530 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,530 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,548 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,548 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,548 99.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,566 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,566 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,566 99.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,584 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,584 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,584 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,602 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,602 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,602 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,620 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,620 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,620 35.0625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,638 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,638 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,638 35.0625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,656 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,656 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,656 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,674 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,674 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,674 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,692 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,692 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,692 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,710 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,710 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,710 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,728 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,728 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,728 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,746 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,746 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,746 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,764 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,764 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,764 116.875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,782 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,782 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,782 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,800 784x0]
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)

View file

@ -3,310 +3,310 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <body> at [8,8] [8+0+0 784 0+0+8] [8+0+0 792 0+0+8] children: not-inline
BlockContainer <div> at [8,8] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,8] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,8 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,8 5.84375x18] baseline: 13.796875
"零"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,26] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,26] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,26 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,26 5.84375x18] baseline: 13.796875
"一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,44] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,44] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,44] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,44 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,44 5.84375x18] baseline: 13.796875
"二"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,62] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,62] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,62] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,62 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,62 5.84375x18] baseline: 13.796875
"三"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,80] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,80] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,80] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,80 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,80 5.84375x18] baseline: 13.796875
"四"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,98] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,98] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,98] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,98 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,98 5.84375x18] baseline: 13.796875
"五"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,116] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,116] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,116] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,116 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,116 5.84375x18] baseline: 13.796875
"六"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,134] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,134] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,134] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,134 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,134 5.84375x18] baseline: 13.796875
"七"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,152] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,152] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,152] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,152 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,152 5.84375x18] baseline: 13.796875
"八"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,170] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,170] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,170] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,170 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,170 5.84375x18] baseline: 13.796875
"九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,188] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,188] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,188] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,188 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,188 5.84375x18] baseline: 13.796875
"十"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,206] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,206] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,206] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
"一百"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,224] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,224] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,224] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,224 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,224 11.6875x18] baseline: 13.796875
"一千"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,242] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,242] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,242] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,242 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,242 11.6875x18] baseline: 13.796875
"十一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,260] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,260] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,260] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,260 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,260 17.53125x18] baseline: 13.796875
"九十九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,278] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,278] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,278] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,278 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,278 23.375x18] baseline: 13.796875
"一百零一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,296] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,296] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,296] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,296 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,296 11.6875x18] baseline: 13.796875
"二百"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,314] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,314] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,314] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,314 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,314 23.375x18] baseline: 13.796875
"六千零一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,332] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,332] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,332] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,332 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,332 11.6875x18] baseline: 13.796875
"一万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,350] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,350] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,350] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,350 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,350 11.6875x18] baseline: 13.796875
"二万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,368] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,368] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,368] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,368 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,368 11.6875x18] baseline: 13.796875
"五万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,386] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,386] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,386] [0+0+0 52.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 9, rect: [8,386 52.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 9, rect: [8,386 52.59375x18] baseline: 13.796875
"九万九千九百九十九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,404] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,404] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,404] [0+0+0 52.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 9, rect: [8,404 52.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 9, rect: [8,404 52.59375x18] baseline: 13.796875
"一万二千三百四十五"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,422] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,422] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,422] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,422 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,422 23.375x18] baseline: 13.796875
"一万零一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,440] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,440] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,440] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,440 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,440 23.375x18] baseline: 13.796875
"一万零十"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,458] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,458] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,458] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,458 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,458 29.21875x18] baseline: 13.796875
"一万零一百"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,476] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,476] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,476] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,476 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,476 23.375x18] baseline: 13.796875
"一万一千"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,494] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,494] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,494] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,494 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,494 11.6875x18] baseline: 13.796875
"一亿"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,512] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,512] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,512] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,512 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,512 11.6875x18] baseline: 13.796875
"二亿"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,530] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,530] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,530] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,530 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,530 11.6875x18] baseline: 13.796875
"五亿"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,548] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,548] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,548] [0+0+0 99.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 17, rect: [8,548 99.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 17, rect: [8,548 99.34375x18] baseline: 13.796875
"九亿九千九百九十九万九千九百九十九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,566] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,566] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,566] [0+0+0 99.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 17, rect: [8,566 99.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 17, rect: [8,566 99.34375x18] baseline: 13.796875
"一亿二千三百四十五万六千七百八十九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,584] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,584] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,584] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,584 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,584 23.375x18] baseline: 13.796875
"一亿零一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,602] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,602] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,602] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,602 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,602 29.21875x18] baseline: 13.796875
"一亿零一万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,620] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,620] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,620] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,620 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,620 29.21875x18] baseline: 13.796875
"一亿零十万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,638] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,638] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,638] [0+0+0 35.0625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,638 35.0625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,638 35.0625x18] baseline: 13.796875
"一亿零一百万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,656] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,656] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,656] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,656 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,656 29.21875x18] baseline: 13.796875
"一亿一千万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,674] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,674] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,674] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,674 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,674 11.6875x18] baseline: 13.796875
"十亿"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,692] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,692] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,692] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,692 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,692 17.53125x18] baseline: 13.796875
"一百万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,710] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,710] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,710] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,710 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,710 11.6875x18] baseline: 13.796875
"一千"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,728] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,728] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,728] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,728 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,728 17.53125x18] baseline: 13.796875
"负一万"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,746] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,746] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,746] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,746 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,746 17.53125x18] baseline: 13.796875
"负一亿"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,764] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,764] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,764] [0+0+0 116.875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 20, rect: [8,764 116.875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 20, rect: [8,764 116.875x18] baseline: 13.796875
"负二十一亿四千七百四十八万三千六百四十八"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,782] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,782] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,782] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,782 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,782 11.6875x18] baseline: 13.796875
"负一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,800] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -315,179 +315,179 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600] overflow: [0,0 800x808]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x792]
PaintableWithLines (BlockContainer<DIV>) [8,8 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,8 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,26 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,26 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,44 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,44 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,44 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,62 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,62 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,62 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,80 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,80 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,80 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,98 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,98 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,98 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,116 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,116 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,116 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,134 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,134 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,134 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,152 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,152 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,152 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,170 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,170 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,170 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,188 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,188 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,188 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,206 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,206 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,206 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,224 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,224 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,224 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,242 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,242 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,242 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,260 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,260 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,260 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,278 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,278 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,278 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,296 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,296 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,296 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,314 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,314 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,314 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,332 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,332 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,332 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,350 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,350 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,350 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,368 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,368 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,368 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,386 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,386 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,386 52.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,404 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,404 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,404 52.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,422 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,422 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,422 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,440 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,440 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,440 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,458 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,458 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,458 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,476 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,476 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,476 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,494 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,494 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,494 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,512 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,512 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,512 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,530 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,530 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,530 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,548 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,548 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,548 99.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,566 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,566 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,566 99.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,584 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,584 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,584 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,602 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,602 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,602 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,620 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,620 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,620 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,638 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,638 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,638 35.0625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,656 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,656 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,656 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,674 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,674 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,674 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,692 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,692 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,692 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,710 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,710 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,710 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,728 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,728 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,728 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,746 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,746 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,746 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,764 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,764 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,764 116.875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,782 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,782 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,782 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,800 784x0]
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)

View file

@ -3,9 +3,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <body> at [8,8] [8+0+0 784 0+0+8] [8+0+0 18 0+0+8] children: not-inline
BlockContainer <div> at [8,8] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,8] [0+0+0 39.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,8 39.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,8 39.6875x18] baseline: 13.796875
"*****"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -14,7 +14,7 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x18]
PaintableWithLines (BlockContainer<DIV>) [8,8 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,8 39.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x0]
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)

View file

@ -3,310 +3,310 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <body> at [8,8] [8+0+0 784 0+0+8] [8+0+0 792 0+0+8] children: not-inline
BlockContainer <div> at [8,8] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,8] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,8 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,8 5.84375x18] baseline: 13.796875
"零"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,26] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,26] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,26 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,26 5.84375x18] baseline: 13.796875
"壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,44] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,44] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,44] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,44 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,44 5.84375x18] baseline: 13.796875
"貳"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,62] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,62] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,62] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,62 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,62 5.84375x18] baseline: 13.796875
"參"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,80] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,80] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,80] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,80 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,80 5.84375x18] baseline: 13.796875
"肆"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,98] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,98] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,98] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,98 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,98 5.84375x18] baseline: 13.796875
"伍"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,116] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,116] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,116] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,116 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,116 5.84375x18] baseline: 13.796875
"陸"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,134] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,134] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,134] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,134 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,134 5.84375x18] baseline: 13.796875
"柒"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,152] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,152] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,152] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,152 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,152 5.84375x18] baseline: 13.796875
"捌"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,170] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,170] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,170] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,170 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,170 5.84375x18] baseline: 13.796875
"玖"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,188] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,188] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,188] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,188 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,188 11.6875x18] baseline: 13.796875
"壹拾"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,206] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,206] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,206] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
"壹佰"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,224] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,224] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,224] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,224 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,224 11.6875x18] baseline: 13.796875
"壹仟"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,242] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,242] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,242] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,242 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,242 17.53125x18] baseline: 13.796875
"壹拾壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,260] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,260] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,260] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,260 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,260 17.53125x18] baseline: 13.796875
"玖拾玖"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,278] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,278] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,278] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,278 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,278 23.375x18] baseline: 13.796875
"壹佰零壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,296] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,296] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,296] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,296 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,296 11.6875x18] baseline: 13.796875
"貳佰"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,314] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,314] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,314] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,314 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,314 23.375x18] baseline: 13.796875
"陸仟零壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,332] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,332] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,332] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,332 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,332 11.6875x18] baseline: 13.796875
"壹萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,350] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,350] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,350] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,350 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,350 11.6875x18] baseline: 13.796875
"貳萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,368] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,368] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,368] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,368 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,368 11.6875x18] baseline: 13.796875
"伍萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,386] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,386] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,386] [0+0+0 52.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 9, rect: [8,386 52.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 9, rect: [8,386 52.59375x18] baseline: 13.796875
"玖萬玖仟玖佰玖拾玖"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,404] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,404] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,404] [0+0+0 52.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 9, rect: [8,404 52.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 9, rect: [8,404 52.59375x18] baseline: 13.796875
"壹萬貳仟參佰肆拾伍"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,422] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,422] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,422] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,422 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,422 23.375x18] baseline: 13.796875
"壹萬零壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,440] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,440] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,440] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,440 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,440 29.21875x18] baseline: 13.796875
"壹萬零壹拾"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,458] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,458] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,458] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,458 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,458 29.21875x18] baseline: 13.796875
"壹萬零壹佰"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,476] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,476] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,476] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,476 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,476 23.375x18] baseline: 13.796875
"壹萬壹仟"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,494] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,494] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,494] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,494 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,494 11.6875x18] baseline: 13.796875
"壹億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,512] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,512] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,512] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,512 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,512 11.6875x18] baseline: 13.796875
"貳億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,530] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,530] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,530] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,530 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,530 11.6875x18] baseline: 13.796875
"伍億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,548] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,548] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,548] [0+0+0 99.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 17, rect: [8,548 99.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 17, rect: [8,548 99.34375x18] baseline: 13.796875
"玖億玖仟玖佰玖拾玖萬玖仟玖佰玖拾玖"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,566] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,566] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,566] [0+0+0 99.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 17, rect: [8,566 99.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 17, rect: [8,566 99.34375x18] baseline: 13.796875
"壹億貳仟參佰肆拾伍萬陸仟柒佰捌拾玖"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,584] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,584] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,584] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,584 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,584 23.375x18] baseline: 13.796875
"壹億零壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,602] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,602] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,602] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,602 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,602 29.21875x18] baseline: 13.796875
"壹億零壹萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,620] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,620] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,620] [0+0+0 35.0625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,620 35.0625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,620 35.0625x18] baseline: 13.796875
"壹億零壹拾萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,638] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,638] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,638] [0+0+0 35.0625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,638 35.0625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,638 35.0625x18] baseline: 13.796875
"壹億零壹佰萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,656] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,656] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,656] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,656 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,656 29.21875x18] baseline: 13.796875
"壹億壹仟萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,674] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,674] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,674] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,674 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,674 17.53125x18] baseline: 13.796875
"壹拾億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,692] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,692] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,692] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,692 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,692 17.53125x18] baseline: 13.796875
"壹佰萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,710] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,710] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,710] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,710 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,710 11.6875x18] baseline: 13.796875
"壹仟"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,728] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,728] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,728] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,728 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,728 17.53125x18] baseline: 13.796875
"負壹萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,746] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,746] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,746] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,746 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,746 17.53125x18] baseline: 13.796875
"負壹億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,764] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,764] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,764] [0+0+0 116.875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 20, rect: [8,764 116.875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 20, rect: [8,764 116.875x18] baseline: 13.796875
"負貳拾壹億肆仟柒佰肆拾捌萬參仟陸佰肆拾捌"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,782] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,782] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,782] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,782 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,782 11.6875x18] baseline: 13.796875
"負壹"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,800] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -315,179 +315,179 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600] overflow: [0,0 800x808]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x792]
PaintableWithLines (BlockContainer<DIV>) [8,8 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,8 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,26 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,26 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,44 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,44 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,44 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,62 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,62 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,62 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,80 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,80 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,80 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,98 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,98 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,98 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,116 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,116 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,116 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,134 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,134 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,134 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,152 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,152 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,152 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,170 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,170 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,170 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,188 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,188 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,188 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,206 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,206 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,206 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,224 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,224 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,224 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,242 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,242 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,242 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,260 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,260 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,260 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,278 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,278 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,278 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,296 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,296 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,296 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,314 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,314 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,314 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,332 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,332 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,332 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,350 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,350 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,350 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,368 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,368 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,368 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,386 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,386 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,386 52.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,404 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,404 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,404 52.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,422 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,422 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,422 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,440 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,440 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,440 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,458 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,458 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,458 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,476 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,476 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,476 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,494 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,494 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,494 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,512 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,512 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,512 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,530 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,530 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,530 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,548 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,548 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,548 99.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,566 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,566 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,566 99.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,584 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,584 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,584 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,602 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,602 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,602 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,620 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,620 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,620 35.0625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,638 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,638 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,638 35.0625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,656 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,656 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,656 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,674 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,674 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,674 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,692 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,692 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,692 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,710 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,710 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,710 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,728 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,728 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,728 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,746 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,746 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,746 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,764 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,764 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,764 116.875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,782 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,782 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,782 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,800 784x0]
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)

View file

@ -3,310 +3,310 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <body> at [8,8] [8+0+0 784 0+0+8] [8+0+0 792 0+0+8] children: not-inline
BlockContainer <div> at [8,8] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,8] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,8 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,8 5.84375x18] baseline: 13.796875
"零"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,26] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,26] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,26 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,26 5.84375x18] baseline: 13.796875
"一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,44] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,44] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,44] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,44 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,44 5.84375x18] baseline: 13.796875
"二"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,62] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,62] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,62] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,62 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,62 5.84375x18] baseline: 13.796875
"三"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,80] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,80] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,80] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,80 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,80 5.84375x18] baseline: 13.796875
"四"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,98] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,98] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,98] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,98 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,98 5.84375x18] baseline: 13.796875
"五"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,116] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,116] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,116] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,116 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,116 5.84375x18] baseline: 13.796875
"六"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,134] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,134] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,134] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,134 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,134 5.84375x18] baseline: 13.796875
"七"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,152] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,152] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,152] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,152 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,152 5.84375x18] baseline: 13.796875
"八"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,170] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,170] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,170] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,170 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,170 5.84375x18] baseline: 13.796875
"九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,188] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,188] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,188] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,188 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,188 5.84375x18] baseline: 13.796875
"十"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,206] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,206] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,206] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,206 11.6875x18] baseline: 13.796875
"一百"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,224] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,224] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,224] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,224 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,224 11.6875x18] baseline: 13.796875
"一千"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,242] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,242] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,242] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,242 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,242 11.6875x18] baseline: 13.796875
"十一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,260] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,260] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,260] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,260 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,260 17.53125x18] baseline: 13.796875
"九十九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,278] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,278] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,278] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,278 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,278 23.375x18] baseline: 13.796875
"一百零一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,296] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,296] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,296] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,296 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,296 11.6875x18] baseline: 13.796875
"二百"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,314] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,314] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,314] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,314 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,314 23.375x18] baseline: 13.796875
"六千零一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,332] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,332] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,332] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,332 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,332 11.6875x18] baseline: 13.796875
"一萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,350] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,350] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,350] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,350 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,350 11.6875x18] baseline: 13.796875
"二萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,368] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,368] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,368] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,368 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,368 11.6875x18] baseline: 13.796875
"五萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,386] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,386] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,386] [0+0+0 52.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 9, rect: [8,386 52.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 9, rect: [8,386 52.59375x18] baseline: 13.796875
"九萬九千九百九十九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,404] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,404] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,404] [0+0+0 52.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 9, rect: [8,404 52.59375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 9, rect: [8,404 52.59375x18] baseline: 13.796875
"一萬二千三百四十五"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,422] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,422] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,422] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,422 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,422 23.375x18] baseline: 13.796875
"一萬零一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,440] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,440] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,440] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,440 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,440 23.375x18] baseline: 13.796875
"一萬零十"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,458] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,458] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,458] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,458 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,458 29.21875x18] baseline: 13.796875
"一萬零一百"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,476] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,476] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,476] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,476 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,476 23.375x18] baseline: 13.796875
"一萬一千"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,494] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,494] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,494] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,494 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,494 11.6875x18] baseline: 13.796875
"一億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,512] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,512] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,512] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,512 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,512 11.6875x18] baseline: 13.796875
"二億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,530] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,530] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,530] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,530 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,530 11.6875x18] baseline: 13.796875
"五億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,548] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,548] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,548] [0+0+0 99.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 17, rect: [8,548 99.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 17, rect: [8,548 99.34375x18] baseline: 13.796875
"九億九千九百九十九萬九千九百九十九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,566] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,566] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,566] [0+0+0 99.34375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 17, rect: [8,566 99.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 17, rect: [8,566 99.34375x18] baseline: 13.796875
"一億二千三百四十五萬六千七百八十九"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,584] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,584] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,584] [0+0+0 23.375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 4, rect: [8,584 23.375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,584 23.375x18] baseline: 13.796875
"一億零一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,602] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,602] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,602] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,602 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,602 29.21875x18] baseline: 13.796875
"一億零一萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,620] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,620] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,620] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,620 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,620 29.21875x18] baseline: 13.796875
"一億零十萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,638] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,638] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,638] [0+0+0 35.0625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,638 35.0625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,638 35.0625x18] baseline: 13.796875
"一億零一百萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,656] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,656] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,656] [0+0+0 29.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,656 29.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,656 29.21875x18] baseline: 13.796875
"一億一千萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,674] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,674] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,674] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,674 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,674 11.6875x18] baseline: 13.796875
"十億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,692] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,692] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,692] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,692 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,692 17.53125x18] baseline: 13.796875
"一百萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,710] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,710] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,710] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,710 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,710 11.6875x18] baseline: 13.796875
"一千"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,728] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,728] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,728] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,728 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,728 17.53125x18] baseline: 13.796875
"負一萬"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,746] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,746] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,746] [0+0+0 17.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [8,746 17.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,746 17.53125x18] baseline: 13.796875
"負一億"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,764] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,764] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,764] [0+0+0 116.875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 20, rect: [8,764 116.875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 20, rect: [8,764 116.875x18] baseline: 13.796875
"負二十一億四千七百四十八萬三千六百四十八"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,782] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,782] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,782] [0+0+0 11.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,782 11.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,782 11.6875x18] baseline: 13.796875
"負一"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,800] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -315,179 +315,179 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600] overflow: [0,0 800x808]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x792]
PaintableWithLines (BlockContainer<DIV>) [8,8 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,8 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,26 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,26 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,44 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,44 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,44 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,62 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,62 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,62 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,80 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,80 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,80 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,98 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,98 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,98 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,116 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,116 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,116 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,134 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,134 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,134 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,152 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,152 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,152 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,170 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,170 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,170 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,188 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,188 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,188 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,206 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,206 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,206 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,224 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,224 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,224 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,242 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,242 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,242 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,260 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,260 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,260 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,278 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,278 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,278 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,296 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,296 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,296 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,314 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,314 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,314 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,332 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,332 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,332 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,350 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,350 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,350 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,368 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,368 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,368 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,386 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,386 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,386 52.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,404 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,404 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,404 52.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,422 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,422 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,422 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,440 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,440 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,440 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,458 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,458 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,458 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,476 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,476 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,476 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,494 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,494 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,494 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,512 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,512 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,512 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,530 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,530 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,530 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,548 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,548 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,548 99.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,566 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,566 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,566 99.34375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,584 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,584 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,584 23.375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,602 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,602 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,602 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,620 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,620 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,620 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,638 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,638 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,638 35.0625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,656 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,656 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,656 29.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,674 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,674 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,674 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,692 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,692 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,692 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,710 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,710 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,710 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,728 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,728 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,728 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,746 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,746 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,746 17.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,764 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,764 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,764 116.875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,782 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,782 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,782 11.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,800 784x0]
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)

View file

@ -8,12 +8,12 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 1, rect: [42.125,8 14.265625x18] baseline: 13.796875
"A"
InlineNode <(anonymous)> at [24,8] [0+0+0 18.125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [24,8 6.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [24,8 6.34375x18] baseline: 13.796875
"1"
frag 1 from TextNode start: 0, length: 2, rect: [30.34375,8 11.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [30.34375,8 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [24,26] [0+0+0 768 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -21,12 +21,12 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 1, rect: [44.59375,26 9.34375x18] baseline: 13.796875
"B"
InlineNode <(anonymous)> at [24,26] [0+0+0 20.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [24,26 8.8125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [24,26 8.8125x18] baseline: 13.796875
"2"
frag 1 from TextNode start: 0, length: 2, rect: [32.8125,26 11.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [32.8125,26 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [24,44] [0+0+0 768 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -34,24 +34,24 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 1, rect: [44.875,44 10.3125x18] baseline: 13.796875
"C"
InlineNode <(anonymous)> at [24,44] [0+0+0 20.875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [24,44 9.09375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [24,44 9.09375x18] baseline: 13.796875
"3"
frag 1 from TextNode start: 0, length: 2, rect: [33.09375,44 11.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [33.09375,44 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [24,62] [0+0+0 768 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div.li> at [24,62] [0+0+0 768 0+0+0] [0+0+0 162 0+0+0] children: not-inline
BlockContainer <(anonymous)> at [24,62] [0+0+0 768 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [24,62] [0+0+0 11.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [24,62 7.75x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [24,62 7.75x18] baseline: 13.796875
"4"
frag 1 from TextNode start: 0, length: 1, rect: [31.75,62 3.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 1, rect: [31.75,62 3.78125x18] baseline: 13.796875
":"
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <div.ol> at [40,80] [0+0+16 752 0+0+0] [0+0+0 144 0+0+0] children: not-inline
BlockContainer <(anonymous)> at [40,80] [0+0+0 752 0+0+0] [0+0+0 0 0+0+0] children: inline
@ -60,12 +60,12 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 1, rect: [70.21875,80 11.140625x18] baseline: 13.796875
"D"
InlineNode <(anonymous)> at [40,80] [0+0+0 30.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [40,80 18.4375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [40,80 18.4375x18] baseline: 13.796875
"4.1"
frag 1 from TextNode start: 0, length: 2, rect: [58.4375,80 11.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [58.4375,80 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [40,98] [0+0+0 752 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -73,24 +73,24 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 1, rect: [72.6875,98 11.859375x18] baseline: 13.796875
"E"
InlineNode <(anonymous)> at [40,98] [0+0+0 32.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [40,98 20.90625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [40,98 20.90625x18] baseline: 13.796875
"4.2"
frag 1 from TextNode start: 0, length: 2, rect: [60.90625,98 11.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [60.90625,98 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [40,116] [0+0+0 752 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div.li> at [40,116] [0+0+0 752 0+0+0] [0+0+0 72 0+0+0] children: not-inline
BlockContainer <(anonymous)> at [40,116] [0+0+0 752 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [40,116] [0+0+0 24.96875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [40,116 21.1875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [40,116 21.1875x18] baseline: 13.796875
"4.3"
frag 1 from TextNode start: 0, length: 1, rect: [61.1875,116 3.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 1, rect: [61.1875,116 3.78125x18] baseline: 13.796875
":"
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <div.ol> at [56,134] [0+0+16 736 0+0+0] [0+0+0 54 0+0+0] children: not-inline
BlockContainer <(anonymous)> at [56,134] [0+0+0 736 0+0+0] [0+0+0 0 0+0+0] children: inline
@ -99,12 +99,12 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 1, rect: [99.65625,134 12.546875x18] baseline: 13.796875
"F"
InlineNode <(anonymous)> at [56,134] [0+0+0 43.65625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [56,134 31.875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [56,134 31.875x18] baseline: 13.796875
"4.3.1"
frag 1 from TextNode start: 0, length: 2, rect: [87.875,134 11.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [87.875,134 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [56,152] [0+0+0 736 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -112,12 +112,12 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 1, rect: [102.125,152 13.234375x18] baseline: 13.796875
"G"
InlineNode <(anonymous)> at [56,152] [0+0+0 46.125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [56,152 34.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [56,152 34.34375x18] baseline: 13.796875
"4.3.2"
frag 1 from TextNode start: 0, length: 2, rect: [90.34375,152 11.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [90.34375,152 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [56,170] [0+0+0 736 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -125,12 +125,12 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 1, rect: [102.40625,170 12.234375x18] baseline: 13.796875
"H"
InlineNode <(anonymous)> at [56,170] [0+0+0 46.40625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [56,170 34.625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [56,170 34.625x18] baseline: 13.796875
"4.3.3"
frag 1 from TextNode start: 0, length: 2, rect: [90.625,170 11.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [90.625,170 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [56,188] [0+0+0 736 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -142,12 +142,12 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 1, rect: [71.625,188 4.59375x18] baseline: 13.796875
"I"
InlineNode <(anonymous)> at [40,188] [0+0+0 31.625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [40,188 19.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [40,188 19.84375x18] baseline: 13.796875
"4.4"
frag 1 from TextNode start: 0, length: 2, rect: [59.84375,188 11.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [59.84375,188 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [40,206] [0+0+0 752 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -155,12 +155,12 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 1, rect: [72.328125,206 8.90625x18] baseline: 13.796875
"J"
InlineNode <(anonymous)> at [40,206] [0+0+0 32.328125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 3, rect: [40,206 20.546875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [40,206 20.546875x18] baseline: 13.796875
"4.5"
frag 1 from TextNode start: 0, length: 2, rect: [60.546875,206 11.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [60.546875,206 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [40,224] [0+0+0 752 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -172,12 +172,12 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 1, rect: [44.234375,224 9.8125x18] baseline: 13.796875
"K"
InlineNode <(anonymous)> at [24,224] [0+0+0 20.234375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [24,224 8.453125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [24,224 8.453125x18] baseline: 13.796875
"5"
frag 1 from TextNode start: 0, length: 2, rect: [32.453125,224 11.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [32.453125,224 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [24,242] [0+0+0 768 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -185,12 +185,12 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 1, rect: [44.515625,242 10.859375x18] baseline: 13.796875
"L"
InlineNode <(anonymous)> at [24,242] [0+0+0 20.515625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [24,242 8.734375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [24,242 8.734375x18] baseline: 13.796875
"6"
frag 1 from TextNode start: 0, length: 2, rect: [32.734375,242 11.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [32.734375,242 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [24,260] [0+0+0 768 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -198,12 +198,12 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 1, rect: [44.5,260 11.765625x18] baseline: 13.796875
"M"
InlineNode <(anonymous)> at [24,260] [0+0+0 20.5 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [24,260 8.71875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [24,260 8.71875x18] baseline: 13.796875
"7"
frag 1 from TextNode start: 0, length: 2, rect: [32.71875,260 11.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [32.71875,260 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [24,278] [0+0+0 768 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -217,98 +217,98 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer(anonymous)) [24,8 768x0]
PaintableWithLines (BlockContainer<DIV>.li) [24,8 768x18]
PaintableWithLines (InlineNode(anonymous)) [24,8 18.125x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [24,26 768x0]
PaintableWithLines (BlockContainer<DIV>.li) [24,26 768x18]
PaintableWithLines (InlineNode(anonymous)) [24,26 20.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [24,44 768x0]
PaintableWithLines (BlockContainer<DIV>.li) [24,44 768x18]
PaintableWithLines (InlineNode(anonymous)) [24,44 20.875x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [24,62 768x0]
PaintableWithLines (BlockContainer<DIV>.li) [24,62 768x162]
PaintableWithLines (BlockContainer(anonymous)) [24,62 768x18]
PaintableWithLines (InlineNode(anonymous)) [24,62 11.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer<DIV>.ol) [24,80 768x144]
PaintableWithLines (BlockContainer(anonymous)) [40,80 752x0]
PaintableWithLines (BlockContainer<DIV>.li) [40,80 752x18]
PaintableWithLines (InlineNode(anonymous)) [40,80 30.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [40,98 752x0]
PaintableWithLines (BlockContainer<DIV>.li) [40,98 752x18]
PaintableWithLines (InlineNode(anonymous)) [40,98 32.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [40,116 752x0]
PaintableWithLines (BlockContainer<DIV>.li) [40,116 752x72]
PaintableWithLines (BlockContainer(anonymous)) [40,116 752x18]
PaintableWithLines (InlineNode(anonymous)) [40,116 24.96875x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer<DIV>.ol) [40,134 752x54]
PaintableWithLines (BlockContainer(anonymous)) [56,134 736x0]
PaintableWithLines (BlockContainer<DIV>.li) [56,134 736x18]
PaintableWithLines (InlineNode(anonymous)) [56,134 43.65625x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [56,152 736x0]
PaintableWithLines (BlockContainer<DIV>.li) [56,152 736x18]
PaintableWithLines (InlineNode(anonymous)) [56,152 46.125x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [56,170 736x0]
PaintableWithLines (BlockContainer<DIV>.li) [56,170 736x18]
PaintableWithLines (InlineNode(anonymous)) [56,170 46.40625x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [56,188 736x0]
PaintableWithLines (BlockContainer(anonymous)) [40,188 752x0]
PaintableWithLines (BlockContainer(anonymous)) [40,188 752x0]
PaintableWithLines (BlockContainer<DIV>.li) [40,188 752x18]
PaintableWithLines (InlineNode(anonymous)) [40,188 31.625x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [40,206 752x0]
PaintableWithLines (BlockContainer<DIV>.li) [40,206 752x18]
PaintableWithLines (InlineNode(anonymous)) [40,206 32.328125x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [40,224 752x0]
PaintableWithLines (BlockContainer(anonymous)) [24,224 768x0]
PaintableWithLines (BlockContainer(anonymous)) [24,224 768x0]
PaintableWithLines (BlockContainer<DIV>.li) [24,224 768x18]
PaintableWithLines (InlineNode(anonymous)) [24,224 20.234375x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [24,242 768x0]
PaintableWithLines (BlockContainer<DIV>.li) [24,242 768x18]
PaintableWithLines (InlineNode(anonymous)) [24,242 20.515625x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [24,260 768x0]
PaintableWithLines (BlockContainer<DIV>.li) [24,260 768x18]
PaintableWithLines (InlineNode(anonymous)) [24,260 20.5x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [24,278 768x0]
PaintableWithLines (BlockContainer(anonymous)) [8,278 784x0]

View file

@ -3,9 +3,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <body> at [8,8] [8+0+0 784 0+0+8] [8+0+0 18 0+0+8] children: not-inline
BlockContainer <div> at [8,8] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,8] [0+0+0 39.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,8 39.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,8 39.6875x18] baseline: 13.796875
"*****"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
TextNode <#text> (not painted)
@ -15,7 +15,7 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x18]
PaintableWithLines (BlockContainer<DIV>) [8,8 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,8 39.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x0]
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)

View file

@ -3,9 +3,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <body> at [8,8] [8+0+0 784 0+0+8] [8+0+0 18 0+0+8] children: not-inline
BlockContainer <div> at [8,8] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,8] [0+0+0 39.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,8 39.6875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,8 39.6875x18] baseline: 13.796875
"*****"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
TextNode <#text> (not painted)
@ -15,7 +15,7 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x18]
PaintableWithLines (BlockContainer<DIV>) [8,8 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,8 39.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x0]
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)

View file

@ -5,56 +5,56 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 1, rect: [26.125,16 14.265625x18] baseline: 13.796875
"A"
InlineNode <(anonymous)> at [8,16] [0+0+0 18.125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,16 6.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,16 6.34375x18] baseline: 13.796875
"1"
frag 1 from TextNode start: 0, length: 2, rect: [14.34375,16 11.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [14.34375,16 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <p> at [8,50] [0+0+0 784 0+0+0] [16+0+0 18 0+0+16] children: inline
frag 0 from TextNode start: 0, length: 1, rect: [28.59375,50 9.34375x18] baseline: 13.796875
"B"
InlineNode <(anonymous)> at [8,50] [0+0+0 20.59375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,50 8.8125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,50 8.8125x18] baseline: 13.796875
"2"
frag 1 from TextNode start: 0, length: 2, rect: [16.8125,50 11.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [16.8125,50 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <p> at [8,84] [0+0+0 784 0+0+0] [16+0+0 18 0+0+16] children: inline
frag 0 from TextNode start: 0, length: 1, rect: [28.875,84 10.3125x18] baseline: 13.796875
"C"
InlineNode <(anonymous)> at [8,84] [0+0+0 20.875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,84 9.09375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,84 9.09375x18] baseline: 13.796875
"3"
frag 1 from TextNode start: 0, length: 2, rect: [17.09375,84 11.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [17.09375,84 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <p> at [8,118] [0+0+0 784 0+0+0] [16+0+0 18 0+0+16] children: inline
frag 0 from TextNode start: 0, length: 1, rect: [27.53125,118 11.140625x18] baseline: 13.796875
"D"
InlineNode <(anonymous)> at [8,118] [0+0+0 19.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,118 7.75x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,118 7.75x18] baseline: 13.796875
"4"
frag 1 from TextNode start: 0, length: 2, rect: [15.75,118 11.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [15.75,118 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <p> at [8,152] [0+0+0 784 0+0+0] [16+0+0 18 0+0+16] children: inline
frag 0 from TextNode start: 0, length: 1, rect: [28.234375,152 11.859375x18] baseline: 13.796875
"E"
InlineNode <(anonymous)> at [8,152] [0+0+0 20.234375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,152 8.453125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,152 8.453125x18] baseline: 13.796875
"5"
frag 1 from TextNode start: 0, length: 2, rect: [16.453125,152 11.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [16.453125,152 11.78125x18] baseline: 13.796875
": "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
ViewportPaintable (Viewport<#document>) [0,0 800x600]
@ -62,28 +62,28 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<BODY>) [8,16 784x154]
PaintableWithLines (BlockContainer<P>) [8,16 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,16 18.125x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer<P>) [8,50 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,50 20.59375x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer<P>) [8,84 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,84 20.875x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer<P>) [8,118 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,118 19.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer<P>) [8,152 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,152 20.234375x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)

View file

@ -3,28 +3,28 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <body> at [8,8] [8+0+0 784 0+0+8] [8+0+0 18 0+0+8] children: not-inline
Box <div.foo> at [8,8] flex-container(row) [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] [FFC] children: not-inline
BlockContainer <(anonymous)> at [8,8] flex-item [0+0+0 28.40625 0+0+0] [0+0+0 18 0+0+0] [BFC] children: inline
frag 0 from TextNode start: 0, length: 4, rect: [8,8 28.40625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 4, rect: [8,8 28.40625x18] baseline: 13.796875
"well"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [46.40625,8] flex-item [0+0+0 36.84375 0+0+0] [0+0+0 18 0+0+0] [BFC] children: inline
frag 0 from TextNode start: 0, length: 5, rect: [46.40625,8 36.84375x18] baseline: 13.796875
"hello"
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [93.25,8] flex-item [0+0+0 55.359375 0+0+0] [0+0+0 18 0+0+0] [BFC] children: inline
frag 0 from TextNode start: 0, length: 7, rect: [93.25,8 55.359375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 7, rect: [93.25,8 55.359375x18] baseline: 13.796875
"friends"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<HTML>) [0,0 800x34]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x18]
PaintableBox (Box<DIV>.foo) [8,8 784x18]
PaintableWithLines (BlockContainer(anonymous)) [8,8 28.40625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [46.40625,8 36.84375x18]
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [93.25,8 55.359375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)
SC for BlockContainer<HTML> [0,0 800x34] [children: 0] (z-index: auto)

View file

@ -7,10 +7,10 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
"Filler text"
TextNode <#text> (not painted)
ListItemBox <(anonymous)> at [24,26] [16+0+0 768 0+0+0] [0+0+0 18 0+0+0] children: inline
frag 0 from TextNode start: 0, length: 11, rect: [24,26 88.703125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 11, rect: [24,26 88.703125x18] baseline: 13.796875
"Filler Text"
ListItemMarkerBox <(anonymous)> at [10,32] [0+0+0 6 0+0+0] [0+0+0 6 0+0+0] children: not-inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,44] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -22,7 +22,7 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
TextPaintable (TextNode<#text>)
PaintableWithLines (ListItemBox(anonymous)) [24,26 768x18]
MarkerPaintable (ListItemMarkerBox(anonymous)) [10,32 6x6]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,44 784x0]
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)

View file

@ -3,7 +3,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <body> at [10,10] [8+1+0 780 0+1+8] [8+1+0 102 0+1+8] children: not-inline
BlockContainer <div.outer> at [11,11] [0+1+0 100 0+1+678] [0+1+0 100 0+1+0] children: not-inline
BlockContainer <(anonymous)> at [12,12] [0+1+0 50 0+1+48] [0+1+0 50 0+1+0] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <div.inner> at [12,64] [0+1+0 98 0+1+0] [0+1+0 0 0+1+0] children: inline
TextNode <#text> (not painted)

View file

@ -7,7 +7,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
Box <tr> at [13,13] table-row [0+0+0 104 0+0+0] [0+0+0 100 0+0+0] children: not-inline
BlockContainer <td> at [15,62] table-cell [0+1+1 100 1+1+0] [0+1+48 2 48+1+0] [BFC] children: not-inline
BlockContainer <(anonymous)> at [16,63] [0+1+0 98 0+1+0] [0+1+0 0 0+1+0] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<HTML>) [0,0 800x126]

View file

@ -8,7 +8,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 1 from TextNode start: 0, length: 1, rect: [75.578125,8 4.5625x18] baseline: 13.796875
"i"
InlineNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <span> at [17.34375,8] [0+0+0 58.234375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [17.34375,8 9.46875x18] baseline: 13.796875
@ -16,7 +16,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 1 from TextNode start: 0, length: 1, rect: [66.28125,8 9.296875x18] baseline: 13.796875
"h"
InlineNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <span> at [26.8125,8] [0+0+0 39.46875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [26.8125,8 8.890625x18] baseline: 13.796875
@ -24,7 +24,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 1 from TextNode start: 0, length: 1, rect: [58.71875,8 7.5625x18] baseline: 13.796875
"g"
InlineNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <span> at [35.703125,8] [0+0+0 23.015625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [35.703125,8 7.859375x18] baseline: 13.796875
@ -32,28 +32,28 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 1 from TextNode start: 0, length: 1, rect: [52.28125,8 6.4375x18] baseline: 13.796875
"f"
InlineNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <span> at [43.5625,8] [0+0+0 8.71875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [43.5625,8 8.71875x18] baseline: 13.796875
"e"
InlineNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div.b> at [8,26] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
@ -63,9 +63,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 1 from TextNode start: 0, length: 1, rect: [128.171875,26 4.5625x18] baseline: 13.796875
"i"
InlineNode <(anonymous)> at [8,26] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,26 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,26 5.84375x18] baseline: 13.796875
"“"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <span> at [23.1875,26] [0+0+0 104.984375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [29.03125,26 9.46875x18] baseline: 13.796875
@ -73,9 +73,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 1 from TextNode start: 0, length: 1, rect: [113.03125,26 9.296875x18] baseline: 13.796875
"h"
InlineNode <(anonymous)> at [23.1875,26] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [23.1875,26 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [23.1875,26 5.84375x18] baseline: 13.796875
""
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <span> at [38.5,26] [0+0+0 74.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [44.34375,26 8.890625x18] baseline: 13.796875
@ -83,9 +83,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 1 from TextNode start: 0, length: 1, rect: [99.625,26 7.5625x18] baseline: 13.796875
"g"
InlineNode <(anonymous)> at [38.5,26] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [38.5,26 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [38.5,26 5.84375x18] baseline: 13.796875
""
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <span> at [53.234375,26] [0+0+0 46.390625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [59.078125,26 7.859375x18] baseline: 13.796875
@ -93,42 +93,42 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 1 from TextNode start: 0, length: 1, rect: [87.34375,26 6.4375x18] baseline: 13.796875
"f"
InlineNode <(anonymous)> at [53.234375,26] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [53.234375,26 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [53.234375,26 5.84375x18] baseline: 13.796875
""
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <span> at [66.9375,26] [0+0+0 20.40625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [72.78125,26 8.71875x18] baseline: 13.796875
"e"
InlineNode <(anonymous)> at [66.9375,26] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [66.9375,26 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [66.9375,26 5.84375x18] baseline: 13.796875
""
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <(anonymous)> at [81.5,26] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [81.5,26 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [81.5,26 5.84375x18] baseline: 13.796875
""
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <(anonymous)> at [93.78125,26] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [93.78125,26 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [93.78125,26 5.84375x18] baseline: 13.796875
""
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <(anonymous)> at [107.1875,26] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [107.1875,26 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [107.1875,26 5.84375x18] baseline: 13.796875
""
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <(anonymous)> at [122.328125,26] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [122.328125,26 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [122.328125,26 5.84375x18] baseline: 13.796875
""
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <(anonymous)> at [132.734375,26] [0+0+0 5.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [132.734375,26 5.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [132.734375,26 5.84375x18] baseline: 13.796875
"”"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,44] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div.c> at [8,44] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
@ -138,9 +138,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 1 from TextNode start: 0, length: 1, rect: [138.859375,44 4.5625x18] baseline: 13.796875
"i"
InlineNode <(anonymous)> at [8,44] [0+0+0 5.484375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,44 5.484375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,44 5.484375x18] baseline: 13.796875
"("
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <span> at [22.828125,44] [0+0+0 116.03125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [30.453125,44 9.46875x18] baseline: 13.796875
@ -148,9 +148,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 1 from TextNode start: 0, length: 1, rect: [121.90625,44 9.296875x18] baseline: 13.796875
"h"
InlineNode <(anonymous)> at [22.828125,44] [0+0+0 7.625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [22.828125,44 7.625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [22.828125,44 7.625x18] baseline: 13.796875
"{"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <span> at [39.921875,44] [0+0+0 81.984375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [46.875,44 8.890625x18] baseline: 13.796875
@ -158,9 +158,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 1 from TextNode start: 0, length: 1, rect: [107.125,44 7.5625x18] baseline: 13.796875
"g"
InlineNode <(anonymous)> at [39.921875,44] [0+0+0 6.953125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [39.921875,44 6.953125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [39.921875,44 6.953125x18] baseline: 13.796875
"["
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <span> at [55.765625,44] [0+0+0 51.359375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [62.71875,44 7.859375x18] baseline: 13.796875
@ -168,42 +168,42 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 1 from TextNode start: 0, length: 1, rect: [93.46875,44 6.4375x18] baseline: 13.796875
"f"
InlineNode <(anonymous)> at [55.765625,44] [0+0+0 6.953125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [55.765625,44 6.953125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [55.765625,44 6.953125x18] baseline: 13.796875
"["
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <span> at [70.578125,44] [0+0+0 22.890625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [77.53125,44 8.71875x18] baseline: 13.796875
"e"
InlineNode <(anonymous)> at [70.578125,44] [0+0+0 6.953125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [70.578125,44 6.953125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [70.578125,44 6.953125x18] baseline: 13.796875
"["
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <(anonymous)> at [86.25,44] [0+0+0 7.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [86.25,44 7.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [86.25,44 7.21875x18] baseline: 13.796875
"]"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <(anonymous)> at [99.90625,44] [0+0+0 7.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [99.90625,44 7.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [99.90625,44 7.21875x18] baseline: 13.796875
"]"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <(anonymous)> at [114.6875,44] [0+0+0 7.21875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [114.6875,44 7.21875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [114.6875,44 7.21875x18] baseline: 13.796875
"]"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <(anonymous)> at [131.203125,44] [0+0+0 7.65625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [131.203125,44 7.65625x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [131.203125,44 7.65625x18] baseline: 13.796875
"}"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
InlineNode <(anonymous)> at [143.421875,44] [0+0+0 4.8125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [143.421875,44 4.8125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [143.421875,44 4.8125x18] baseline: 13.796875
")"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,62] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -229,74 +229,74 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<DIV>.b) [8,26 784x18]
PaintableWithLines (InlineNode<SPAN>) [8,26 130.578125x18]
PaintableWithLines (InlineNode(anonymous)) [8,26 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode<SPAN>) [23.1875,26 104.984375x18]
PaintableWithLines (InlineNode(anonymous)) [23.1875,26 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode<SPAN>) [38.5,26 74.53125x18]
PaintableWithLines (InlineNode(anonymous)) [38.5,26 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode<SPAN>) [53.234375,26 46.390625x18]
PaintableWithLines (InlineNode(anonymous)) [53.234375,26 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode<SPAN>) [66.9375,26 20.40625x18]
PaintableWithLines (InlineNode(anonymous)) [66.9375,26 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode(anonymous)) [81.5,26 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode(anonymous)) [93.78125,26 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode(anonymous)) [107.1875,26 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode(anonymous)) [122.328125,26 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode(anonymous)) [132.734375,26 5.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,44 784x0]
PaintableWithLines (BlockContainer<DIV>.c) [8,44 784x18]
PaintableWithLines (InlineNode<SPAN>) [8,44 140.234375x18]
PaintableWithLines (InlineNode(anonymous)) [8,44 5.484375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode<SPAN>) [22.828125,44 116.03125x18]
PaintableWithLines (InlineNode(anonymous)) [22.828125,44 7.625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode<SPAN>) [39.921875,44 81.984375x18]
PaintableWithLines (InlineNode(anonymous)) [39.921875,44 6.953125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode<SPAN>) [55.765625,44 51.359375x18]
PaintableWithLines (InlineNode(anonymous)) [55.765625,44 6.953125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode<SPAN>) [70.578125,44 22.890625x18]
PaintableWithLines (InlineNode(anonymous)) [70.578125,44 6.953125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode(anonymous)) [86.25,44 7.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode(anonymous)) [99.90625,44 7.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode(anonymous)) [114.6875,44 7.21875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode(anonymous)) [131.203125,44 7.65625x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (InlineNode(anonymous)) [143.421875,44 4.8125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,62 784x0]
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)

View file

@ -12,12 +12,12 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 3, rect: [58.125,16 28.6875x18] baseline: 13.796875
"one"
InlineNode <(anonymous)> at [48,16] [0+0+0 10.125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [48,16 6.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [48,16 6.34375x18] baseline: 13.796875
"1"
frag 1 from TextNode start: 0, length: 1, rect: [54.34375,16 3.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 1, rect: [54.34375,16 3.78125x18] baseline: 13.796875
":"
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [48,34] [0+0+0 744 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -25,9 +25,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 6, rect: [61.84375,34 43.28125x18] baseline: 13.796875
"bullet"
InlineNode <(anonymous)> at [48,34] [0+0+0 13.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [48,34 13.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [48,34 13.84375x18] baseline: 13.796875
"• "
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [48,52] [0+0+0 744 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -35,12 +35,12 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 5, rect: [60.875,52 42.421875x18] baseline: 13.796875
"three"
InlineNode <(anonymous)> at [48,52] [0+0+0 12.875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [48,52 9.09375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [48,52 9.09375x18] baseline: 13.796875
"3"
frag 1 from TextNode start: 0, length: 1, rect: [57.09375,52 3.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 1, rect: [57.09375,52 3.78125x18] baseline: 13.796875
":"
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [48,70] [0+0+0 744 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -48,9 +48,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 6, rect: [61.84375,70 43.28125x18] baseline: 13.796875
"bullet"
InlineNode <(anonymous)> at [48,70] [0+0+0 13.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [48,70 13.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [48,70 13.84375x18] baseline: 13.796875
"• "
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [48,88] [0+0+0 744 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -58,12 +58,12 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 4, rect: [60.234375,88 27.921875x18] baseline: 13.796875
"five"
InlineNode <(anonymous)> at [48,88] [0+0+0 12.234375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [48,88 8.453125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [48,88 8.453125x18] baseline: 13.796875
"5"
frag 1 from TextNode start: 0, length: 1, rect: [56.453125,88 3.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 1, rect: [56.453125,88 3.78125x18] baseline: 13.796875
":"
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [48,106] [0+0+0 744 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -79,30 +79,30 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer(anonymous)) [48,16 744x0]
PaintableWithLines (ListItemBox<LI>.number) [48,16 744x18]
PaintableWithLines (InlineNode(anonymous)) [48,16 10.125x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [48,34 744x0]
PaintableWithLines (ListItemBox<LI>.bullet) [48,34 744x18]
PaintableWithLines (InlineNode(anonymous)) [48,34 13.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [48,52 744x0]
PaintableWithLines (ListItemBox<LI>.number) [48,52 744x18]
PaintableWithLines (InlineNode(anonymous)) [48,52 12.875x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [48,70 744x0]
PaintableWithLines (ListItemBox<LI>.bullet) [48,70 744x18]
PaintableWithLines (InlineNode(anonymous)) [48,70 13.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [48,88 744x0]
PaintableWithLines (ListItemBox<LI>.number) [48,88 744x18]
PaintableWithLines (InlineNode(anonymous)) [48,88 12.234375x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [48,106 744x0]
PaintableWithLines (BlockContainer(anonymous)) [8,122 784x0]

View file

@ -9,12 +9,12 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 3, rect: [18.125,8 28.6875x18] baseline: 13.796875
"one"
InlineNode <(anonymous)> at [8,8] [0+0+0 10.125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,8 6.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,8 6.34375x18] baseline: 13.796875
"1"
frag 1 from TextNode start: 0, length: 1, rect: [14.34375,8 3.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 1, rect: [14.34375,8 3.78125x18] baseline: 13.796875
":"
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -22,9 +22,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 6, rect: [21.84375,26 43.28125x18] baseline: 13.796875
"bullet"
InlineNode <(anonymous)> at [8,26] [0+0+0 13.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,26 13.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,26 13.84375x18] baseline: 13.796875
"• "
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [8,44] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -32,12 +32,12 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 5, rect: [20.875,44 42.421875x18] baseline: 13.796875
"three"
InlineNode <(anonymous)> at [8,44] [0+0+0 12.875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,44 9.09375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,44 9.09375x18] baseline: 13.796875
"3"
frag 1 from TextNode start: 0, length: 1, rect: [17.09375,44 3.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 1, rect: [17.09375,44 3.78125x18] baseline: 13.796875
":"
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [8,62] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -45,9 +45,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 6, rect: [21.84375,62 43.28125x18] baseline: 13.796875
"bullet"
InlineNode <(anonymous)> at [8,62] [0+0+0 13.84375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 2, rect: [8,62 13.84375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 2, rect: [8,62 13.84375x18] baseline: 13.796875
"• "
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [8,80] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -55,12 +55,12 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 4, rect: [20.234375,80 27.921875x18] baseline: 13.796875
"five"
InlineNode <(anonymous)> at [8,80] [0+0+0 12.234375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,80 8.453125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,80 8.453125x18] baseline: 13.796875
"5"
frag 1 from TextNode start: 0, length: 1, rect: [16.453125,80 3.78125x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 1, rect: [16.453125,80 3.78125x18] baseline: 13.796875
":"
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [8,98] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -72,30 +72,30 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer(anonymous)) [8,8 784x0]
PaintableWithLines (ListItemBox<DIV>.numbers) [8,8 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,8 10.125x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x0]
PaintableWithLines (ListItemBox<DIV>.bullets) [8,26 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,26 13.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [8,44 784x0]
PaintableWithLines (ListItemBox<DIV>.numbers) [8,44 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,44 12.875x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [8,62 784x0]
PaintableWithLines (ListItemBox<DIV>.bullets) [8,62 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,62 13.84375x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [8,80 784x0]
PaintableWithLines (ListItemBox<DIV>.numbers) [8,80 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,80 12.234375x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [8,98 784x0]

View file

@ -5,34 +5,34 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
frag 0 from TextNode start: 0, length: 1, rect: [26.6875,8 9.34375x18] baseline: 13.796875
"a"
InlineNode <(anonymous)> at [8,8] [0+0+0 18.6875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,8 6.34375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,8 6.34375x18] baseline: 13.796875
"1"
frag 1 from TextNode start: 0, length: 2, rect: [14.34375,8 12.34375x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [14.34375,8 12.34375x18] baseline: 13.796875
". "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <div#b> at [8,26] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
frag 0 from TextNode start: 0, length: 1, rect: [29.15625,26 9.46875x18] baseline: 13.796875
"b"
InlineNode <(anonymous)> at [8,26] [0+0+0 21.15625 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,26 8.8125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,26 8.8125x18] baseline: 13.796875
"2"
frag 1 from TextNode start: 0, length: 2, rect: [16.8125,26 12.34375x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [16.8125,26 12.34375x18] baseline: 13.796875
". "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <div#c> at [8,44] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
frag 0 from TextNode start: 0, length: 1, rect: [29.4375,44 8.890625x18] baseline: 13.796875
"c"
InlineNode <(anonymous)> at [8,44] [0+0+0 21.4375 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 1, rect: [8,44 9.09375x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 1, rect: [8,44 9.09375x18] baseline: 13.796875
"3"
frag 1 from TextNode start: 0, length: 2, rect: [17.09375,44 12.34375x18] baseline: 13.796875
frag 1 from GeneratedTextNode start: 0, length: 2, rect: [17.09375,44 12.34375x18] baseline: 13.796875
". "
TextNode <#text> (not painted)
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [8,62] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -42,18 +42,18 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<BODY>) [8,8 784x54]
PaintableWithLines (BlockContainer<DIV>#a) [8,8 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,8 18.6875x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer<DIV>#b) [8,26 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,26 21.15625x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer<DIV>#c) [8,44 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,44 21.4375x18]
TextPaintable (TextNode<#text>)
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (GeneratedTextNode(anonymous))
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [8,62 784x0]

View file

@ -9,9 +9,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
TextNode <#text> (not painted)
BlockContainer <div.item> at [8,10] [0+0+0 78 0+0+0] [0+0+0 104 0+0+0] [BFC] children: not-inline
BlockContainer <(anonymous)> at [9,11] floating [0+1+0 50 0+1+0] [0+1+0 50 0+1+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [9,63] floating [0+1+0 50 0+1+0] [0+1+0 50 0+1+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,10] [0+0+0 0 0+0+0] [0+0+0 0 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
TextNode <#text> (not painted)

View file

@ -5,15 +5,15 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
ListItemMarkerBox <(anonymous)> at [-6,14] [0+0+0 6 0+0+0] [0+0+0 6 0+0+0] children: not-inline
BlockContainer <(anonymous)> at [8,8] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,8] [0+0+0 52.53125 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 6, rect: [8,8 52.53125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 6, rect: [8,8 52.53125x18] baseline: 13.796875
"before"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <div> at [8,26] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: not-inline
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
InlineNode <(anonymous)> at [8,26] [0+0+0 40.1875 0+0+0] [0+0+0 18 0+0+0]
frag 0 from TextNode start: 0, length: 5, rect: [8,26 40.1875x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 5, rect: [8,26 40.1875x18] baseline: 13.796875
"after"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,44] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -24,11 +24,11 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
MarkerPaintable (ListItemMarkerBox(anonymous)) [-6,14 6x6]
PaintableWithLines (BlockContainer(anonymous)) [8,8 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,8 52.53125x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer<DIV>) [8,26 784x0]
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x18]
PaintableWithLines (InlineNode(anonymous)) [8,26 40.1875x18]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,44 784x0]
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)

View file

@ -8,9 +8,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <div.float> at [792,8] floating [0+0+0 0 0+0+0] [0+0+0 80 0+0+0] [BFC] children: not-inline
BlockContainer <div.float> at [792,8] floating [0+0+0 0 0+0+0] [0+0+0 60 0+0+0] [BFC] children: not-inline
BlockContainer <(anonymous)> at [792,88] [0+0+0 0 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,158] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <div#after> at [8,158] [0+0+0 784 0+0+0] [0+0+0 10 0+0+0] children: not-inline
BlockContainer <(anonymous)> at [8,168] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)

View file

@ -27,7 +27,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
TextNode <#text> (not painted)
Box <button#viewsManagerToggleButton.toolbarButton> at [9,2] positioned flex-container(row) flex-item [0+0+0 28 0+0+0] [0+0+0 28 0+0+0] [FFC] children: not-inline
BlockContainer <(anonymous)> at [15,8] flex-item [0+0+0 16 0+0+0] [0+0+0 16 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> (not painted) [BFC] children: inline
TextNode <#text> (not painted)
BlockContainer <span> at [31,16] flex-item [0+0+0 0 0+0+0] [0+0+0 0 0+0+0] [BFC] children: inline
@ -50,7 +50,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
TextNode <#text> (not painted)
Box <button#viewFindButton.toolbarButton> at [69,2] positioned flex-container(row) [0+0+0 28 0+0+0] [0+0+0 28 0+0+0] [FFC] children: not-inline
BlockContainer <(anonymous)> at [75,8] flex-item [0+0+0 16 0+0+0] [0+0+0 16 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> (not painted) [BFC] children: inline
TextNode <#text> (not painted)
BlockContainer <span> at [91,16] flex-item [0+0+0 0 0+0+0] [0+0+0 0 0+0+0] [BFC] children: inline
@ -70,7 +70,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
TextNode <#text> (not painted)
Box <button#previous.toolbarButton> at [98,2] positioned flex-container(row) flex-item [0+0+0 28 0+0+0] [0+0+0 28 0+0+0] [FFC] children: not-inline
BlockContainer <(anonymous)> at [104,8] flex-item [0+0+0 16 0+0+0] [0+0+0 16 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> (not painted) [BFC] children: inline
TextNode <#text> (not painted)
BlockContainer <span> at [120,16] flex-item [0+0+0 0 0+0+0] [0+0+0 0 0+0+0] [BFC] children: inline
@ -86,7 +86,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
TextNode <#text> (not painted)
Box <button#next.toolbarButton> at [129,2] positioned flex-container(row) flex-item [0+0+0 28 0+0+0] [0+0+0 28 0+0+0] [FFC] children: not-inline
BlockContainer <(anonymous)> at [135,8] flex-item [0+0+0 16 0+0+0] [0+0+0 16 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> (not painted) [BFC] children: inline
TextNode <#text> (not painted)
BlockContainer <span> at [151,16] flex-item [0+0+0 0 0+0+0] [0+0+0 0 0+0+0] [BFC] children: inline
@ -134,7 +134,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
TextNode <#text> (not painted)
Box <button#zoomOutButton.toolbarButton> at [313.9375,2] positioned flex-container(row) flex-item [0+0+0 28 0+0+0] [0+0+0 28 0+0+0] [FFC] children: not-inline
BlockContainer <(anonymous)> at [319.9375,8] flex-item [0+0+0 16 0+0+0] [0+0+0 16 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> (not painted) [BFC] children: inline
TextNode <#text> (not painted)
BlockContainer <span> at [335.9375,16] flex-item [0+0+0 0 0+0+0] [0+0+0 0 0+0+0] [BFC] children: inline
@ -152,7 +152,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
TextNode <#text> (not painted)
Box <button#zoomInButton.toolbarButton> at [344.9375,2] positioned flex-container(row) flex-item [0+0+0 28 0+0+0] [0+0+0 28 0+0+0] [FFC] children: not-inline
BlockContainer <(anonymous)> at [350.9375,8] flex-item [0+0+0 16 0+0+0] [0+0+0 16 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> (not painted) [BFC] children: inline
TextNode <#text> (not painted)
BlockContainer <span> at [366.9375,16] flex-item [0+0+0 0 0+0+0] [0+0+0 0 0+0+0] [BFC] children: inline
@ -179,7 +179,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <(anonymous)> (not painted) [BFC] children: inline
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [500.421875,8] positioned [0+0+0 16 0+0+0] [0+0+0 16 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> (not painted) [BFC] children: inline
TextNode <#text> (not painted)
BlockContainer <(anonymous)> (not painted) [BFC] children: inline
@ -197,7 +197,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
TextNode <#text> (not painted)
Box <button#editorHighlightButton.toolbarButton> at [585,2] positioned flex-container(row) [0+0+0 28 0+0+0] [0+0+0 28 0+0+0] [FFC] children: not-inline
BlockContainer <(anonymous)> at [591,8] flex-item [0+0+0 16 0+0+0] [0+0+0 16 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> (not painted) [BFC] children: inline
TextNode <#text> (not painted)
BlockContainer <span> at [607,16] flex-item [0+0+0 0 0+0+0] [0+0+0 0 0+0+0] [BFC] children: inline
@ -216,7 +216,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
TextNode <#text> (not painted)
Box <button#editorFreeTextButton.toolbarButton> at [614,2] positioned flex-container(row) [0+0+0 28 0+0+0] [0+0+0 28 0+0+0] [FFC] children: not-inline
BlockContainer <(anonymous)> at [620,8] flex-item [0+0+0 16 0+0+0] [0+0+0 16 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> (not painted) [BFC] children: inline
TextNode <#text> (not painted)
BlockContainer <span> at [636,16] flex-item [0+0+0 0 0+0+0] [0+0+0 0 0+0+0] [BFC] children: inline
@ -235,7 +235,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
TextNode <#text> (not painted)
Box <button#editorInkButton.toolbarButton> at [643,2] positioned flex-container(row) [0+0+0 28 0+0+0] [0+0+0 28 0+0+0] [FFC] children: not-inline
BlockContainer <(anonymous)> at [649,8] flex-item [0+0+0 16 0+0+0] [0+0+0 16 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> (not painted) [BFC] children: inline
TextNode <#text> (not painted)
BlockContainer <span> at [665,16] flex-item [0+0+0 0 0+0+0] [0+0+0 0 0+0+0] [BFC] children: inline
@ -254,7 +254,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
TextNode <#text> (not painted)
Box <button#editorStampButton.toolbarButton> at [672,2] positioned flex-container(row) [0+0+0 28 0+0+0] [0+0+0 28 0+0+0] [FFC] children: not-inline
BlockContainer <(anonymous)> at [678,8] flex-item [0+0+0 16 0+0+0] [0+0+0 16 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> (not painted) [BFC] children: inline
TextNode <#text> (not painted)
BlockContainer <span> at [694,16] flex-item [0+0+0 0 0+0+0] [0+0+0 0 0+0+0] [BFC] children: inline
@ -284,7 +284,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
TextNode <#text> (not painted)
Box <button#printButton.toolbarButton> at [707,2] positioned flex-container(row) flex-item [0+0+0 28 0+0+0] [0+0+0 28 0+0+0] [FFC] children: not-inline
BlockContainer <(anonymous)> at [713,8] flex-item [0+0+0 16 0+0+0] [0+0+0 16 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> (not painted) [BFC] children: inline
TextNode <#text> (not painted)
BlockContainer <span> at [729,16] flex-item [0+0+0 0 0+0+0] [0+0+0 0 0+0+0] [BFC] children: inline
@ -297,7 +297,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
TextNode <#text> (not painted)
Box <button#downloadButton.toolbarButton> at [736,2] positioned flex-container(row) flex-item [0+0+0 28 0+0+0] [0+0+0 28 0+0+0] [FFC] children: not-inline
BlockContainer <(anonymous)> at [742,8] flex-item [0+0+0 16 0+0+0] [0+0+0 16 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> (not painted) [BFC] children: inline
TextNode <#text> (not painted)
BlockContainer <span> at [758,16] flex-item [0+0+0 0 0+0+0] [0+0+0 0 0+0+0] [BFC] children: inline
@ -318,7 +318,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
TextNode <#text> (not painted)
Box <button#secondaryToolbarToggleButton.toolbarButton> at [771,2] positioned flex-container(row) [0+0+0 28 0+0+0] [0+0+0 28 0+0+0] [FFC] children: not-inline
BlockContainer <(anonymous)> at [777,8] flex-item [0+0+0 16 0+0+0] [0+0+0 16 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> (not painted) [BFC] children: inline
TextNode <#text> (not painted)
BlockContainer <span> at [793,16] flex-item [0+0+0 0 0+0+0] [0+0+0 0 0+0+0] [BFC] children: inline

View file

@ -3,10 +3,10 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <body> at [8,25] [8+0+0 784 0+0+8] [8+0+0 125 0+0+25] children: not-inline
BlockContainer <div.empty_content> at [33,25] [25+0+0 50 0+0+709] [25+0+0 50 0+0+25] children: not-inline
BlockContainer <(anonymous)> at [33,75] [0+0+0 50 0+0+0] [0+0+50 0 0+0+0] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <div.content_with_space> at [33,100] [25+0+0 50 0+0+709] [25+0+0 50 0+0+25] children: not-inline
BlockContainer <(anonymous)> at [33,150] [0+0+0 50 0+0+0] [0+0+50 0 0+0+0] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,175] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)

View file

@ -7,9 +7,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
"foobar"
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [8,26] positioned [0+0+0 50 0+0+0] [0+0+0 50 0+0+0] [BFC] children: inline
frag 0 from TextNode start: 0, length: 3, rect: [8,26 27.203125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,26 27.203125x18] baseline: 13.796875
"baz"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
BlockContainer <div> at [8,26] [0+0+0 784 0+0+0] [0+0+0 18 0+0+0] children: inline
@ -23,9 +23,9 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
"foobar"
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [8,62] positioned [0+0+0 50 0+0+0] [0+0+0 50 0+0+0] [BFC] children: inline
frag 0 from TextNode start: 0, length: 3, rect: [8,62 27.203125x18] baseline: 13.796875
frag 0 from GeneratedTextNode start: 0, length: 3, rect: [8,62 27.203125x18] baseline: 13.796875
"baz"
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,62] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)
@ -36,7 +36,7 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (InlineNode<SPAN>) [8,8 54.796875x18]
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [8,26 50x50]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,26 784x0]
PaintableWithLines (BlockContainer<DIV>) [8,26 784x18]
TextPaintable (TextNode<#text>)
@ -44,7 +44,7 @@ ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (InlineNode<SPAN>) [8,44 54.796875x18]
TextPaintable (TextNode<#text>)
PaintableWithLines (BlockContainer(anonymous)) [8,62 50x50]
TextPaintable (TextNode<#text>)
TextPaintable (GeneratedTextNode(anonymous))
PaintableWithLines (BlockContainer(anonymous)) [8,62 784x0]
SC for Viewport<#document> [0,0 800x600] [children: 1] (z-index: auto)

View file

@ -10,7 +10,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <div.a> at [8,31] [0+0+0 784 0+0+0] [0+0+0 100 0+0+0] children: inline
frag 0 from BlockContainer start: 0, length: 0, rect: [8,31 200x100] baseline: 100
BlockContainer <(anonymous)> at [8,31] inline-block [0+0+0 200 0+0+0] [0+0+0 100 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,131] [0+0+0 784 0+0+0] [0+0+0 69 0+0+0] children: inline
frag 0 from TextNode start: 1, length: 42, rect: [8,177 441.40625x23] baseline: 17.5
"Variable set by CSS rule matching element:"
@ -23,7 +23,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <div.b> at [8,200] [0+0+0 784 0+0+0] [0+0+0 100 0+0+0] children: inline
frag 0 from BlockContainer start: 0, length: 0, rect: [8,200 200x100] baseline: 100
BlockContainer <(anonymous)> at [8,200] inline-block [0+0+0 200 0+0+0] [0+0+0 100 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,300] [0+0+0 784 0+0+0] [0+0+0 69 0+0+0] children: inline
frag 0 from TextNode start: 1, length: 49, rect: [8,346 520.765625x23] baseline: 17.5
"Variable set by CSS rule matching pseudo element:"
@ -36,7 +36,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <div.c> at [8,369] [0+0+0 784 0+0+0] [0+0+0 100 0+0+0] children: inline
frag 0 from BlockContainer start: 0, length: 0, rect: [8,369 200x100] baseline: 100
BlockContainer <(anonymous)> at [8,369] inline-block [0+0+0 200 0+0+0] [0+0+0 100 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
BlockContainer <(anonymous)> at [8,469] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: inline
TextNode <#text> (not painted)

View file

@ -3,7 +3,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
BlockContainer <body> at [8,8] [8+0+0 784 0+0+8] [8+0+0 0 0+0+8] children: not-inline
BlockContainer <div.hello> at [8,8] [0+0+0 784 0+0+0] [0+0+0 0 0+0+0] children: not-inline
BlockContainer <(anonymous)> at [8,8] positioned [0+0+0 500 0+0+0] [0+0+0 100 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<HTML>) [0,0 800x16]

View file

@ -7,7 +7,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
"foobar"
TextNode <#text> (not painted)
BlockContainer <(anonymous)> at [8,26] [0+0+0 50 0+0+734] [0+0+0 50 0+0+0] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<HTML>) [0,0 800x84]

View file

@ -7,7 +7,7 @@ Viewport <#document> at [0,0] [0+0+0 800 0+0+0] [0+0+0 600 0+0+0] [BFC] children
Box <tr> at [10,10] table-row [0+0+0 780 0+0+0] [0+0+0 0 0+0+0] children: not-inline
BlockContainer <(anonymous)> at [10,10] table-cell [0+0+0 780 0+0+0] [0+0+0 0 0+0+0] [BFC] children: not-inline
BlockContainer <(anonymous)> at [0,590] positioned [0+0+0 800 0+0+0] [0+0+0 10 0+0+0] [BFC] children: inline
TextNode <#text> (not painted)
GeneratedTextNode <(anonymous)> (not painted)
ViewportPaintable (Viewport<#document>) [0,0 800x600]
PaintableWithLines (BlockContainer<HTML>) [0,0 800x20]