mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 02:57:44 +00:00
LibWeb: Show formatting context roots in layout tree dumps
This patch does three things: - Factors out the code that determines whether a box will create a new formatting context for its children (and which type of context) - Uses that code to mark all formatting context roots in layout tree dumps. This makes it much easier to follow along with layout since you can now see exactly where control is transferred to a new formatting context. - Rebaselines all existing layout tests, since the output format has changed slightly.
This commit is contained in:
parent
42e118e6a9
commit
968db96101
117 changed files with 905 additions and 851 deletions
|
@ -1,20 +1,20 @@
|
|||
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
||||
BlockContainer <html> at (1,1) content-size 798x60.9375 children: not-inline
|
||||
BlockContainer <html> at (1,1) content-size 798x60.9375 [BFC] children: not-inline
|
||||
BlockContainer <body> at (10,10) content-size 780x42.9375 children: not-inline
|
||||
BlockContainer <div> at (11,11) content-size 778x19.46875 children: not-inline
|
||||
TableWrapper <(anonymous)> at (11,11) content-size 29.15625x19.46875 children: not-inline
|
||||
TableBox <(anonymous)> at (11,11) content-size 29.15625x19.46875 children: not-inline
|
||||
TableWrapper <(anonymous)> at (11,11) content-size 29.15625x19.46875 [BFC] children: not-inline
|
||||
TableBox <(anonymous)> at (11,11) content-size 29.15625x19.46875 [TFC] children: not-inline
|
||||
TableRowBox <(anonymous)> at (11,11) content-size 29.15625x19.46875 children: not-inline
|
||||
TableCellBox <span> at (12,12) content-size 27.15625x17.46875 children: inline
|
||||
TableCellBox <span> at (12,12) content-size 27.15625x17.46875 [BFC] children: inline
|
||||
line 0 width: 27.15625, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 3, rect: [12,12 27.15625x17.46875]
|
||||
"foo"
|
||||
TextNode <#text>
|
||||
BlockContainer <div> at (11,32.46875) content-size 778x19.46875 children: not-inline
|
||||
TableWrapper <(anonymous)> at (11,32.46875) content-size 29.640625x19.46875 children: not-inline
|
||||
TableBox <(anonymous)> at (11,32.46875) content-size 29.640625x19.46875 children: not-inline
|
||||
TableWrapper <(anonymous)> at (11,32.46875) content-size 29.640625x19.46875 [BFC] children: not-inline
|
||||
TableBox <(anonymous)> at (11,32.46875) content-size 29.640625x19.46875 [TFC] children: not-inline
|
||||
TableRowBox <(anonymous)> at (11,32.46875) content-size 29.640625x19.46875 children: not-inline
|
||||
TableCellBox <span> at (12,33.46875) content-size 27.640625x17.46875 children: inline
|
||||
TableCellBox <span> at (12,33.46875) content-size 27.640625x17.46875 [BFC] children: inline
|
||||
line 0 width: 27.640625, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 3, rect: [12,33.46875 27.640625x17.46875]
|
||||
"bar"
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x74.40625 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x74.40625 [BFC] children: not-inline
|
||||
BlockContainer <body> at (8,8) content-size 784x58.40625 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 784x0 children: not-inline
|
||||
TableBox <table#empty-table> at (8,8) content-size 784x0 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 784x0 [BFC] children: not-inline
|
||||
TableBox <table#empty-table> at (8,8) content-size 784x0 [TFC] children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,8) content-size 784x0 children: inline
|
||||
TextNode <#text>
|
||||
TextNode <#text>
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 95.171875x58.40625 children: not-inline
|
||||
TableBox <table#full-table> at (8,8) content-size 95.171875x58.40625 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 95.171875x58.40625 [BFC] children: not-inline
|
||||
TableBox <table#full-table> at (8,8) content-size 95.171875x58.40625 [TFC] children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,8) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
BlockContainer <caption> at (8,8) content-size 0x0 children: inline
|
||||
BlockContainer <caption> at (8,8) content-size 0x0 [BFC] children: inline
|
||||
TextNode <#text>
|
||||
BlockContainer <(anonymous)> at (8,8) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
|
@ -20,7 +20,7 @@ Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
|||
TableRowBox <tr> at (8,8) content-size 95.171875x19.46875 children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,8) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <td> at (9,9) content-size 93.171875x17.46875 children: inline
|
||||
TableCellBox <td> at (9,9) content-size 93.171875x17.46875 [BFC] children: inline
|
||||
line 0 width: 73.65625, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 9, rect: [9,9 73.65625x17.46875]
|
||||
"Head Cell"
|
||||
|
@ -37,7 +37,7 @@ Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
|||
TableRowBox <tr> at (8,27.46875) content-size 95.171875x19.46875 children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,8) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <td> at (9,28.46875) content-size 93.171875x17.46875 children: inline
|
||||
TableCellBox <td> at (9,28.46875) content-size 93.171875x17.46875 [BFC] children: inline
|
||||
line 0 width: 70.234375, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 9, rect: [9,28.46875 70.234375x17.46875]
|
||||
"Body Cell"
|
||||
|
@ -54,7 +54,7 @@ Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
|||
TableRowBox <tr> at (8,46.9375) content-size 95.171875x19.46875 children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,8) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <td> at (9,47.9375) content-size 93.171875x17.46875 children: inline
|
||||
TableCellBox <td> at (9,47.9375) content-size 93.171875x17.46875 [BFC] children: inline
|
||||
line 0 width: 93.171875, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 11, rect: [9,47.9375 93.171875x17.46875]
|
||||
"Footer Cell"
|
||||
|
|
|
@ -1,22 +1,22 @@
|
|||
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x293.625 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x293.625 [BFC] children: not-inline
|
||||
BlockContainer <body> at (8,8) content-size 784x277.625 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 164.296875x66.40625 children: not-inline
|
||||
TableBox <table.table-border-black> at (9,9) content-size 164.296875x64.40625 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 164.296875x66.40625 [BFC] children: not-inline
|
||||
TableBox <table.table-border-black> at (9,9) content-size 164.296875x64.40625 [TFC] children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,8) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableRowGroupBox <tbody> at (9,9) content-size 166.296875x64.40625 children: not-inline
|
||||
TableRowBox <tr> at (9,9) content-size 166.296875x21.46875 children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,8) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <td> at (11,11) content-size 82.015625x17.46875 children: inline
|
||||
TableCellBox <td> at (11,11) content-size 82.015625x17.46875 [BFC] children: inline
|
||||
line 0 width: 82.015625, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 9, rect: [11,11 82.015625x17.46875]
|
||||
"Firstname"
|
||||
TextNode <#text>
|
||||
BlockContainer <(anonymous)> at (8,8) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <td> at (97.015625,11) content-size 76.28125x17.46875 children: inline
|
||||
TableCellBox <td> at (97.015625,11) content-size 76.28125x17.46875 [BFC] children: inline
|
||||
line 0 width: 76.28125, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 8, rect: [97.015625,11 76.28125x17.46875]
|
||||
"Lastname"
|
||||
|
@ -28,14 +28,14 @@ Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
|||
TableRowBox <tr> at (9,30.46875) content-size 166.296875x21.46875 children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,8) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <td> at (11,32.46875) content-size 82.015625x17.46875 children: inline
|
||||
TableCellBox <td> at (11,32.46875) content-size 82.015625x17.46875 [BFC] children: inline
|
||||
line 0 width: 44.65625, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 5, rect: [11,32.46875 44.65625x17.46875]
|
||||
"Peter"
|
||||
TextNode <#text>
|
||||
BlockContainer <(anonymous)> at (8,8) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <td> at (97.015625,32.46875) content-size 76.28125x17.46875 children: inline
|
||||
TableCellBox <td> at (97.015625,32.46875) content-size 76.28125x17.46875 [BFC] children: inline
|
||||
line 0 width: 53.671875, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 7, rect: [97.015625,32.46875 53.671875x17.46875]
|
||||
"Griffin"
|
||||
|
@ -47,14 +47,14 @@ Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
|||
TableRowBox <tr> at (9,51.9375) content-size 166.296875x21.46875 children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,8) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <td> at (11,53.9375) content-size 82.015625x17.46875 children: inline
|
||||
TableCellBox <td> at (11,53.9375) content-size 82.015625x17.46875 [BFC] children: inline
|
||||
line 0 width: 35.125, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 4, rect: [11,53.9375 35.125x17.46875]
|
||||
"Lois"
|
||||
TextNode <#text>
|
||||
BlockContainer <(anonymous)> at (8,8) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <td> at (97.015625,53.9375) content-size 76.28125x17.46875 children: inline
|
||||
TableCellBox <td> at (97.015625,53.9375) content-size 76.28125x17.46875 [BFC] children: inline
|
||||
line 0 width: 53.671875, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 7, rect: [97.015625,53.9375 53.671875x17.46875]
|
||||
"Griffin"
|
||||
|
@ -66,22 +66,22 @@ Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
|||
BlockContainer <(anonymous)> at (8,74.40625) content-size 784x0 children: inline
|
||||
TextNode <#text>
|
||||
TextNode <#text>
|
||||
TableWrapper <(anonymous)> at (8,74.40625) content-size 164.296875x62.40625 children: not-inline
|
||||
TableBox <table.table-border-black> at (8,74.40625) content-size 164.296875x62.40625 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,74.40625) content-size 164.296875x62.40625 [BFC] children: not-inline
|
||||
TableBox <table.table-border-black> at (8,74.40625) content-size 164.296875x62.40625 [TFC] children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,74.40625) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableRowGroupBox <tbody> at (8,74.40625) content-size 164.296875x62.40625 children: not-inline
|
||||
TableRowBox <tr> at (8,74.40625) content-size 164.296875x20.46875 children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,74.40625) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <td> at (9,75.40625) content-size 82.015625x17.46875 children: inline
|
||||
TableCellBox <td> at (9,75.40625) content-size 82.015625x17.46875 [BFC] children: inline
|
||||
line 0 width: 82.015625, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 9, rect: [9,75.40625 82.015625x17.46875]
|
||||
"Firstname"
|
||||
TextNode <#text>
|
||||
BlockContainer <(anonymous)> at (8,74.40625) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <td> at (95.015625,75.40625) content-size 76.28125x17.46875 children: inline
|
||||
TableCellBox <td> at (95.015625,75.40625) content-size 76.28125x17.46875 [BFC] children: inline
|
||||
line 0 width: 76.28125, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 8, rect: [95.015625,75.40625 76.28125x17.46875]
|
||||
"Lastname"
|
||||
|
@ -93,14 +93,14 @@ Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
|||
TableRowBox <tr> at (8,94.875) content-size 164.296875x21.46875 children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,74.40625) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <td> at (9,96.875) content-size 82.015625x17.46875 children: inline
|
||||
TableCellBox <td> at (9,96.875) content-size 82.015625x17.46875 [BFC] children: inline
|
||||
line 0 width: 44.65625, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 5, rect: [9,96.875 44.65625x17.46875]
|
||||
"Peter"
|
||||
TextNode <#text>
|
||||
BlockContainer <(anonymous)> at (8,74.40625) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <td> at (95.015625,96.875) content-size 76.28125x17.46875 children: inline
|
||||
TableCellBox <td> at (95.015625,96.875) content-size 76.28125x17.46875 [BFC] children: inline
|
||||
line 0 width: 53.671875, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 7, rect: [95.015625,96.875 53.671875x17.46875]
|
||||
"Griffin"
|
||||
|
@ -112,14 +112,14 @@ Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
|||
TableRowBox <tr> at (8,116.34375) content-size 164.296875x20.46875 children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,74.40625) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <td> at (9,118.34375) content-size 82.015625x17.46875 children: inline
|
||||
TableCellBox <td> at (9,118.34375) content-size 82.015625x17.46875 [BFC] children: inline
|
||||
line 0 width: 35.125, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 4, rect: [9,118.34375 35.125x17.46875]
|
||||
"Lois"
|
||||
TextNode <#text>
|
||||
BlockContainer <(anonymous)> at (8,74.40625) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <td> at (95.015625,118.34375) content-size 76.28125x17.46875 children: inline
|
||||
TableCellBox <td> at (95.015625,118.34375) content-size 76.28125x17.46875 [BFC] children: inline
|
||||
line 0 width: 53.671875, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 7, rect: [95.015625,118.34375 53.671875x17.46875]
|
||||
"Griffin"
|
||||
|
@ -131,21 +131,21 @@ Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
|||
BlockContainer <(anonymous)> at (8,136.8125) content-size 784x0 children: inline
|
||||
TextNode <#text>
|
||||
TextNode <#text>
|
||||
TableWrapper <(anonymous)> at (8,136.8125) content-size 160.296875x56.40625 children: not-inline
|
||||
TableBox <div.table.border-black> at (8,136.8125) content-size 160.296875x56.40625 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,136.8125) content-size 160.296875x56.40625 [BFC] children: not-inline
|
||||
TableBox <div.table.border-black> at (8,136.8125) content-size 160.296875x56.40625 [TFC] children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,136.8125) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableRowBox <div.table-row.border-black> at (8,136.8125) content-size 160.296875x18.46875 children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,136.8125) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <div.table-cell.border-black> at (8,136.8125) content-size 82.015625x17.46875 children: inline
|
||||
TableCellBox <div.table-cell.border-black> at (8,136.8125) content-size 82.015625x17.46875 [BFC] children: inline
|
||||
line 0 width: 82.015625, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 9, rect: [8,136.8125 82.015625x17.46875]
|
||||
"Firstname"
|
||||
TextNode <#text>
|
||||
BlockContainer <(anonymous)> at (8,136.8125) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <div.table-cell.border-black> at (92.015625,136.8125) content-size 76.28125x17.46875 children: inline
|
||||
TableCellBox <div.table-cell.border-black> at (92.015625,136.8125) content-size 76.28125x17.46875 [BFC] children: inline
|
||||
line 0 width: 76.28125, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 8, rect: [92.015625,136.8125 76.28125x17.46875]
|
||||
"Lastname"
|
||||
|
@ -157,14 +157,14 @@ Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
|||
TableRowBox <div.table-row.border-black> at (8,155.28125) content-size 160.296875x19.46875 children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,136.8125) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <div.table-cell.border-black> at (8,156.28125) content-size 82.015625x17.46875 children: inline
|
||||
TableCellBox <div.table-cell.border-black> at (8,156.28125) content-size 82.015625x17.46875 [BFC] children: inline
|
||||
line 0 width: 44.65625, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 5, rect: [8,156.28125 44.65625x17.46875]
|
||||
"Peter"
|
||||
TextNode <#text>
|
||||
BlockContainer <(anonymous)> at (8,136.8125) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <div.table-cell.border-black> at (92.015625,156.28125) content-size 76.28125x17.46875 children: inline
|
||||
TableCellBox <div.table-cell.border-black> at (92.015625,156.28125) content-size 76.28125x17.46875 [BFC] children: inline
|
||||
line 0 width: 53.671875, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 7, rect: [92.015625,156.28125 53.671875x17.46875]
|
||||
"Griffin"
|
||||
|
@ -176,14 +176,14 @@ Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
|||
TableRowBox <div.table-row.border-black> at (8,174.75) content-size 160.296875x18.46875 children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,136.8125) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <div.table-cell.border-black> at (8,175.75) content-size 82.015625x17.46875 children: inline
|
||||
TableCellBox <div.table-cell.border-black> at (8,175.75) content-size 82.015625x17.46875 [BFC] children: inline
|
||||
line 0 width: 35.125, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 4, rect: [8,175.75 35.125x17.46875]
|
||||
"Lois"
|
||||
TextNode <#text>
|
||||
BlockContainer <(anonymous)> at (8,136.8125) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <div.table-cell.border-black> at (92.015625,175.75) content-size 76.28125x17.46875 children: inline
|
||||
TableCellBox <div.table-cell.border-black> at (92.015625,175.75) content-size 76.28125x17.46875 [BFC] children: inline
|
||||
line 0 width: 53.671875, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 7, rect: [92.015625,175.75 53.671875x17.46875]
|
||||
"Griffin"
|
||||
|
@ -195,21 +195,21 @@ Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
|||
BlockContainer <(anonymous)> at (8,193.21875) content-size 784x0 children: inline
|
||||
TextNode <#text>
|
||||
TextNode <#text>
|
||||
TableWrapper <(anonymous)> at (8,193.21875) content-size 178.296875x92.40625 children: not-inline
|
||||
TableBox <div.table.thick-border-black> at (8,193.21875) content-size 178.296875x92.40625 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,193.21875) content-size 178.296875x92.40625 [BFC] children: not-inline
|
||||
TableBox <div.table.thick-border-black> at (8,193.21875) content-size 178.296875x92.40625 [TFC] children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,193.21875) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableRowBox <div.table-row.thick-border-black> at (8,193.21875) content-size 178.296875x27.46875 children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,193.21875) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <div.table-cell.thick-border-black> at (8,193.21875) content-size 82.015625x17.46875 children: inline
|
||||
TableCellBox <div.table-cell.thick-border-black> at (8,193.21875) content-size 82.015625x17.46875 [BFC] children: inline
|
||||
line 0 width: 82.015625, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 9, rect: [8,193.21875 82.015625x17.46875]
|
||||
"Firstname"
|
||||
TextNode <#text>
|
||||
BlockContainer <(anonymous)> at (8,193.21875) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <div.table-cell.thick-border-black> at (110.015625,193.21875) content-size 76.28125x17.46875 children: inline
|
||||
TableCellBox <div.table-cell.thick-border-black> at (110.015625,193.21875) content-size 76.28125x17.46875 [BFC] children: inline
|
||||
line 0 width: 76.28125, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 8, rect: [110.015625,193.21875 76.28125x17.46875]
|
||||
"Lastname"
|
||||
|
@ -221,14 +221,14 @@ Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
|||
TableRowBox <div.table-row.thick-border-black> at (8,220.6875) content-size 178.296875x37.46875 children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,193.21875) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <div.table-cell.thick-border-black> at (8,230.6875) content-size 82.015625x17.46875 children: inline
|
||||
TableCellBox <div.table-cell.thick-border-black> at (8,230.6875) content-size 82.015625x17.46875 [BFC] children: inline
|
||||
line 0 width: 44.65625, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 5, rect: [8,230.6875 44.65625x17.46875]
|
||||
"Peter"
|
||||
TextNode <#text>
|
||||
BlockContainer <(anonymous)> at (8,193.21875) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <div.table-cell.thick-border-black> at (110.015625,230.6875) content-size 76.28125x17.46875 children: inline
|
||||
TableCellBox <div.table-cell.thick-border-black> at (110.015625,230.6875) content-size 76.28125x17.46875 [BFC] children: inline
|
||||
line 0 width: 53.671875, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 7, rect: [110.015625,230.6875 53.671875x17.46875]
|
||||
"Griffin"
|
||||
|
@ -240,14 +240,14 @@ Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
|||
TableRowBox <div.table-row.thick-border-black> at (8,258.15625) content-size 178.296875x27.46875 children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,193.21875) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <div.table-cell.thick-border-black> at (8,268.15625) content-size 82.015625x17.46875 children: inline
|
||||
TableCellBox <div.table-cell.thick-border-black> at (8,268.15625) content-size 82.015625x17.46875 [BFC] children: inline
|
||||
line 0 width: 35.125, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 4, rect: [8,268.15625 35.125x17.46875]
|
||||
"Lois"
|
||||
TextNode <#text>
|
||||
BlockContainer <(anonymous)> at (8,193.21875) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableCellBox <div.table-cell.thick-border-black> at (110.015625,268.15625) content-size 76.28125x17.46875 children: inline
|
||||
TableCellBox <div.table-cell.thick-border-black> at (110.015625,268.15625) content-size 76.28125x17.46875 [BFC] children: inline
|
||||
line 0 width: 53.671875, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 7, rect: [110.015625,268.15625 53.671875x17.46875]
|
||||
"Griffin"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x116 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 102x100 children: not-inline
|
||||
TableBox <body> at (8,8) content-size 102x100 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x116 [BFC] children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 102x100 [BFC] children: not-inline
|
||||
TableBox <body> at (8,8) content-size 102x100 [TFC] children: not-inline
|
||||
TableRowBox <div.row> at (8,8) content-size 102x100 children: not-inline
|
||||
TableCellBox <div.cell> at (9,9) content-size 100x0 children: not-inline
|
||||
TableCellBox <div.cell> at (9,9) content-size 100x0 [BFC] children: not-inline
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x108.21875 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x108.21875 [BFC] children: not-inline
|
||||
BlockContainer <body> at (8,8) content-size 784x92.21875 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 782x92.21875 children: not-inline
|
||||
TableBox <table.ambox> at (9,9) content-size 782x90.21875 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 782x92.21875 [BFC] children: not-inline
|
||||
TableBox <table.ambox> at (9,9) content-size 782x90.21875 [TFC] children: not-inline
|
||||
BlockContainer <(anonymous)> at (8,8) content-size 0x0 children: inline
|
||||
TextNode <#text>
|
||||
TableRowGroupBox <tbody> at (9,9) content-size 782x90.21875 children: not-inline
|
||||
TableRowBox <tr> at (9,9) content-size 782x90.21875 children: not-inline
|
||||
TableCellBox <td.mbox-image> at (10,29.109375) content-size 50x50 children: not-inline
|
||||
TableCellBox <td.mbox-image> at (10,29.109375) content-size 50x50 [BFC] children: not-inline
|
||||
BlockContainer <div.mbox-image-div> at (10,29.109375) content-size 50x50 children: not-inline
|
||||
TableCellBox <td.mbox-text> at (62,10) content-size 728x88.21875 children: inline
|
||||
TableCellBox <td.mbox-text> at (62,10) content-size 728x88.21875 [BFC] children: inline
|
||||
line 0 width: 689.640625, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 1, length: 84, rect: [62,10 689.640625x17.46875]
|
||||
"In a scene set in a lawyer's office, the lawyer sits alone and bounces a rubber ball"
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
||||
BlockContainer <html> at (1,1) content-size 798x39.46875 children: not-inline
|
||||
Box <body> at (10,10) content-size 764x21.46875 flex-container(row) children: not-inline
|
||||
BlockContainer <div.upper> at (11,11) content-size 41.78125x19.46875 flex-item children: not-inline
|
||||
TableWrapper <(anonymous)> at (11,11) content-size 41.78125x19.46875 children: not-inline
|
||||
TableBox <(anonymous)> at (11,11) content-size 41.78125x19.46875 children: not-inline
|
||||
BlockContainer <html> at (1,1) content-size 798x39.46875 [BFC] children: not-inline
|
||||
Box <body> at (10,10) content-size 764x21.46875 flex-container(row) [FFC] children: not-inline
|
||||
BlockContainer <div.upper> at (11,11) content-size 41.78125x19.46875 flex-item [BFC] children: not-inline
|
||||
TableWrapper <(anonymous)> at (11,11) content-size 41.78125x19.46875 [BFC] children: not-inline
|
||||
TableBox <(anonymous)> at (11,11) content-size 41.78125x19.46875 [TFC] children: not-inline
|
||||
TableRowBox <(anonymous)> at (11,11) content-size 41.78125x19.46875 children: not-inline
|
||||
TableCellBox <div.cell> at (12,12) content-size 39.78125x17.46875 children: inline
|
||||
TableCellBox <div.cell> at (12,12) content-size 39.78125x17.46875 [BFC] children: inline
|
||||
line 0 width: 39.78125, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 5, rect: [12,12 39.78125x17.46875]
|
||||
"Hello"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x116 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 102x100 children: not-inline
|
||||
TableBox <body> at (8,8) content-size 102x100 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x116 [BFC] children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 102x100 [BFC] children: not-inline
|
||||
TableBox <body> at (8,8) content-size 102x100 [TFC] children: not-inline
|
||||
TableRowBox <div.row> at (8,8) content-size 102x100 children: not-inline
|
||||
TableCellBox <div.cell> at (9,9) content-size 100x0 children: not-inline
|
||||
TableCellBox <div.cell> at (9,9) content-size 100x0 [BFC] children: not-inline
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x166 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x166 [BFC] children: not-inline
|
||||
BlockContainer <body> at (8,8) content-size 784x150 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 200x150 children: not-inline
|
||||
TableBox <div.table> at (8,8) content-size 200x150 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 200x150 [BFC] children: not-inline
|
||||
TableBox <div.table> at (8,8) content-size 200x150 [TFC] children: not-inline
|
||||
TableRowBox <div.row.a> at (8,8) content-size 200x50 children: not-inline
|
||||
TableCellBox <div.cell> at (8,8) content-size 200x0 children: not-inline
|
||||
TableCellBox <div.cell> at (8,8) content-size 200x0 [BFC] children: not-inline
|
||||
TableRowBox <div.row.b> at (8,58) content-size 200x100 children: not-inline
|
||||
TableCellBox <div.cell> at (8,58) content-size 200x0 children: not-inline
|
||||
TableCellBox <div.cell> at (8,58) content-size 200x0 [BFC] children: not-inline
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x316 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x316 [BFC] children: not-inline
|
||||
BlockContainer <body> at (8,8) content-size 784x300 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 200x300 children: not-inline
|
||||
TableBox <div.table> at (8,8) content-size 200x300 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 200x300 [BFC] children: not-inline
|
||||
TableBox <div.table> at (8,8) content-size 200x300 [TFC] children: not-inline
|
||||
TableRowBox <div.row.a> at (8,8) content-size 200x150 children: not-inline
|
||||
TableCellBox <div.cell> at (8,8) content-size 200x0 children: not-inline
|
||||
TableCellBox <div.cell> at (8,8) content-size 200x0 [BFC] children: not-inline
|
||||
TableRowBox <div.row.b> at (8,158) content-size 200x150 children: not-inline
|
||||
TableCellBox <div.cell> at (8,158) content-size 200x0 children: not-inline
|
||||
TableCellBox <div.cell> at (8,158) content-size 200x0 [BFC] children: not-inline
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x316 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x316 [BFC] children: not-inline
|
||||
BlockContainer <body> at (8,8) content-size 784x300 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 200x300 children: not-inline
|
||||
TableBox <div.table> at (8,8) content-size 200x300 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 200x300 [BFC] children: not-inline
|
||||
TableBox <div.table> at (8,8) content-size 200x300 [TFC] children: not-inline
|
||||
TableRowBox <div.row.a> at (8,8) content-size 200x150 children: not-inline
|
||||
TableCellBox <div.cell> at (8,8) content-size 200x17.46875 children: inline
|
||||
TableCellBox <div.cell> at (8,8) content-size 200x17.46875 [BFC] children: inline
|
||||
line 0 width: 9.34375, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 1, rect: [8,8 9.34375x17.46875]
|
||||
"a"
|
||||
TextNode <#text>
|
||||
TableRowBox <div.row.b> at (8,158) content-size 200x150 children: not-inline
|
||||
TableCellBox <div.cell> at (8,158) content-size 200x17.46875 children: inline
|
||||
TableCellBox <div.cell> at (8,158) content-size 200x17.46875 [BFC] children: inline
|
||||
line 0 width: 9.46875, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 1, rect: [8,158 9.46875x17.46875]
|
||||
"b"
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x316 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x316 [BFC] children: not-inline
|
||||
BlockContainer <body> at (8,8) content-size 784x300 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 200x300 children: not-inline
|
||||
TableBox <div.table> at (8,8) content-size 200x300 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 200x300 [BFC] children: not-inline
|
||||
TableBox <div.table> at (8,8) content-size 200x300 [TFC] children: not-inline
|
||||
TableRowBox <div.row.a> at (8,8) content-size 200x100 children: not-inline
|
||||
TableCellBox <div.cell> at (8,8) content-size 200x17.46875 children: inline
|
||||
TableCellBox <div.cell> at (8,8) content-size 200x17.46875 [BFC] children: inline
|
||||
line 0 width: 9.34375, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 1, rect: [8,8 9.34375x17.46875]
|
||||
"a"
|
||||
TextNode <#text>
|
||||
TableRowBox <div.row.b> at (8,108) content-size 200x200 children: not-inline
|
||||
TableCellBox <div.cell> at (8,108) content-size 200x17.46875 children: inline
|
||||
TableCellBox <div.cell> at (8,108) content-size 200x17.46875 [BFC] children: inline
|
||||
line 0 width: 9.46875, height: 17.46875, bottom: 17.46875, baseline: 13.53125
|
||||
frag 0 from TextNode start: 0, length: 1, rect: [8,108 9.46875x17.46875]
|
||||
"b"
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x33.46875 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x33.46875 [BFC] children: not-inline
|
||||
BlockContainer <body> at (8,8) content-size 784x17.46875 children: not-inline
|
||||
TableWrapper <(anonymous)> at (350,8) content-size 100x17.46875 children: not-inline
|
||||
TableBox <div> at (350,8) content-size 100x17.46875 children: not-inline
|
||||
TableWrapper <(anonymous)> at (350,8) content-size 100x17.46875 [BFC] children: not-inline
|
||||
TableBox <div> at (350,8) content-size 100x17.46875 [TFC] children: not-inline
|
||||
TableRowBox <(anonymous)> at (350,8) content-size 2000x17.46875 children: not-inline
|
||||
TableCellBox <(anonymous)> at (350,8) content-size 2000x17.46875 children: not-inline
|
||||
TableCellBox <(anonymous)> at (350,8) content-size 2000x17.46875 [BFC] children: not-inline
|
||||
BlockContainer <(anonymous)> at (350,8) content-size 2000x0 children: inline
|
||||
TextNode <#text>
|
||||
BlockContainer <div> at (350,8) content-size 2000x17.46875 children: inline
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x226 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x226 [BFC] children: not-inline
|
||||
BlockContainer <body> at (8,8) content-size 784x210 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 584x210 children: not-inline
|
||||
TableBox <table.table> at (108,108) content-size 584x10 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 584x210 [BFC] children: not-inline
|
||||
TableBox <table.table> at (108,108) content-size 584x10 [TFC] children: not-inline
|
||||
TableRowGroupBox <tbody> at (108,108) content-size 584x10 children: not-inline
|
||||
TableRowBox <tr> at (108,108) content-size 584x10 children: not-inline
|
||||
TableCellBox <td.cell> at (109,113) content-size 582x0 children: not-inline
|
||||
TableCellBox <td.cell> at (109,113) content-size 582x0 [BFC] children: not-inline
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x16 children: not-inline
|
||||
BlockContainer <html> at (0,0) content-size 800x16 [BFC] children: not-inline
|
||||
BlockContainer <body> at (8,8) content-size 784x0 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 200x0 children: not-inline
|
||||
TableBox <div.table> at (8,8) content-size 200x0 children: not-inline
|
||||
TableWrapper <(anonymous)> at (8,8) content-size 200x0 [BFC] children: not-inline
|
||||
TableBox <div.table> at (8,8) content-size 200x0 [TFC] children: not-inline
|
||||
TableRowBox <div.row> at (8,8) content-size 200x0 children: not-inline
|
||||
TableCellBox <div.cell> at (8,8) content-size 200x0 children: not-inline
|
||||
TableCellBox <div.cell> at (8,8) content-size 200x0 [BFC] children: not-inline
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue