Changeset 162742 in webkit


Ignore:
Timestamp:
Jan 24, 2014 5:34:09 PM (10 years ago)
Author:
Alan Bujtas
Message:

Subpixel layout: Default style of input type=checkbox/radio (0.5ex) adds 1px extra margin on both left and right.
https://bugs.webkit.org/show_bug.cgi?id=125728

Reviewed by Simon Fraser.

Using the 0.5ex value to set checkbox/radio left and right margins is a long-standing
(khtml) behavior. While it indicates dynamic behavior, in order to get the margins changed,
the widget's font size needs to be set, which is rather rare for such input types.
It also results in odd layout, where the checkbox's indentation may seem to change randomly.

'<input style="font-size: 30px;" type="checkbox">foo' changes neither the checkbox
nor the text size, but it indents the line by about 15px.

Other browsers (FF, Opera with Presto) disagree and they set static margins values.
2px is the current default computed value.

Source/WebCore:

  • css/html.css:

(input[type="radio"], input[type="checkbox"]):

LayoutTests:

  • platform/mac-mountainlion/fast/block/margin-collapse/103-expected.txt:
  • platform/mac-mountainlion/fast/forms/basic-inputs-expected.txt:
  • platform/mac-mountainlion/fast/forms/box-shadow-override-expected.txt:
  • platform/mac-mountainlion/fast/forms/form-element-geometry-expected.txt:
  • platform/mac-mountainlion/fast/forms/input-appearance-height-expected.txt:
  • platform/mac-mountainlion/fast/forms/input-value-expected.txt:
  • platform/mac-mountainlion/fast/replaced/replaced-breaking-expected.txt:
  • platform/mac-mountainlion/fast/text/textIteratorNilRenderer-expected.txt:
  • platform/mac-mountainlion/http/tests/navigation/javascriptlink-frames-expected.txt:
  • platform/mac-mountainlion/tables/mozilla/bugs/bug4527-expected.txt:
  • platform/mac/compositing/overflow/theme-affects-visual-overflow-expected.txt:
  • platform/mac/css1/box_properties/acid_test-expected.txt:
  • platform/mac/css2.1/t09-c5526c-display-00-e-expected.txt:
  • platform/mac/css3/selectors3/html/css3-modsel-25-expected.txt:
  • platform/mac/css3/selectors3/html/css3-modsel-70-expected.txt:
  • platform/mac/css3/selectors3/xhtml/css3-modsel-25-expected.txt:
  • platform/mac/css3/selectors3/xhtml/css3-modsel-70-expected.txt:
  • platform/mac/css3/selectors3/xml/css3-modsel-25-expected.txt:
  • platform/mac/css3/selectors3/xml/css3-modsel-70-expected.txt:
  • platform/mac/fast/block/basic/011-expected.txt:
  • platform/mac/fast/block/margin-collapse/103-expected.txt:
  • platform/mac/fast/css/non-standard-checkbox-size-expected.txt:
  • platform/mac/fast/forms/001-expected.txt:
  • platform/mac/fast/forms/basic-inputs-expected.txt:
  • platform/mac/fast/forms/box-shadow-override-expected.txt:
  • platform/mac/fast/forms/file/file-input-disabled-expected.txt:
  • platform/mac/fast/forms/form-element-geometry-expected.txt:
  • platform/mac/fast/forms/formmove-expected.txt:
  • platform/mac/fast/forms/formmove2-expected.txt:
  • platform/mac/fast/forms/indeterminate-expected.txt:
  • platform/mac/fast/forms/input-appearance-height-expected.txt:
  • platform/mac/fast/forms/input-value-expected.txt:
  • platform/mac/fast/inline/positionedLifetime-expected.txt:
  • platform/mac/fast/parser/bad-xml-slash-expected.txt:
  • platform/mac/fast/replaced/replaced-breaking-expected.txt:
  • platform/mac/fast/replaced/width100percent-checkbox-expected.txt:
  • platform/mac/fast/replaced/width100percent-radio-expected.txt:
  • platform/mac/fast/text/textIteratorNilRenderer-expected.txt:
  • platform/mac/fast/text/whitespace/normal-after-nowrap-breaking-expected.txt:
  • platform/mac/http/tests/navigation/javascriptlink-frames-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug1318-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug4527-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/core/captions1-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/core/captions2-expected.txt:
Location:
trunk
Files:
47 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r162741 r162742  
     12014-01-24  Zalan Bujtas  <zalan@apple.com>
     2
     3        Subpixel layout: Default style of input type=checkbox/radio (0.5ex) adds 1px extra margin on both left and right.
     4        https://bugs.webkit.org/show_bug.cgi?id=125728
     5
     6        Reviewed by Simon Fraser.
     7
     8        Using the 0.5ex value to set checkbox/radio left and right margins is a long-standing
     9        (khtml) behavior. While it indicates dynamic behavior, in order to get the margins changed,
     10        the widget's font size needs to be set, which is rather rare for such input types.
     11        It also results in odd layout, where the checkbox's indentation may seem to change randomly.
     12
     13        '<input style="font-size: 30px;" type="checkbox">foo' changes neither the checkbox
     14        nor the text size, but it indents the line by about 15px.
     15
     16        Other browsers (FF, Opera with Presto) disagree and they set static margins values.
     17        2px is the current default computed value.
     18
     19        * platform/mac-mountainlion/fast/block/margin-collapse/103-expected.txt:
     20        * platform/mac-mountainlion/fast/forms/basic-inputs-expected.txt:
     21        * platform/mac-mountainlion/fast/forms/box-shadow-override-expected.txt:
     22        * platform/mac-mountainlion/fast/forms/form-element-geometry-expected.txt:
     23        * platform/mac-mountainlion/fast/forms/input-appearance-height-expected.txt:
     24        * platform/mac-mountainlion/fast/forms/input-value-expected.txt:
     25        * platform/mac-mountainlion/fast/replaced/replaced-breaking-expected.txt:
     26        * platform/mac-mountainlion/fast/text/textIteratorNilRenderer-expected.txt:
     27        * platform/mac-mountainlion/http/tests/navigation/javascriptlink-frames-expected.txt:
     28        * platform/mac-mountainlion/tables/mozilla/bugs/bug4527-expected.txt:
     29        * platform/mac/compositing/overflow/theme-affects-visual-overflow-expected.txt:
     30        * platform/mac/css1/box_properties/acid_test-expected.txt:
     31        * platform/mac/css2.1/t09-c5526c-display-00-e-expected.txt:
     32        * platform/mac/css3/selectors3/html/css3-modsel-25-expected.txt:
     33        * platform/mac/css3/selectors3/html/css3-modsel-70-expected.txt:
     34        * platform/mac/css3/selectors3/xhtml/css3-modsel-25-expected.txt:
     35        * platform/mac/css3/selectors3/xhtml/css3-modsel-70-expected.txt:
     36        * platform/mac/css3/selectors3/xml/css3-modsel-25-expected.txt:
     37        * platform/mac/css3/selectors3/xml/css3-modsel-70-expected.txt:
     38        * platform/mac/fast/block/basic/011-expected.txt:
     39        * platform/mac/fast/block/margin-collapse/103-expected.txt:
     40        * platform/mac/fast/css/non-standard-checkbox-size-expected.txt:
     41        * platform/mac/fast/forms/001-expected.txt:
     42        * platform/mac/fast/forms/basic-inputs-expected.txt:
     43        * platform/mac/fast/forms/box-shadow-override-expected.txt:
     44        * platform/mac/fast/forms/file/file-input-disabled-expected.txt:
     45        * platform/mac/fast/forms/form-element-geometry-expected.txt:
     46        * platform/mac/fast/forms/formmove-expected.txt:
     47        * platform/mac/fast/forms/formmove2-expected.txt:
     48        * platform/mac/fast/forms/indeterminate-expected.txt:
     49        * platform/mac/fast/forms/input-appearance-height-expected.txt:
     50        * platform/mac/fast/forms/input-value-expected.txt:
     51        * platform/mac/fast/inline/positionedLifetime-expected.txt:
     52        * platform/mac/fast/parser/bad-xml-slash-expected.txt:
     53        * platform/mac/fast/replaced/replaced-breaking-expected.txt:
     54        * platform/mac/fast/replaced/width100percent-checkbox-expected.txt:
     55        * platform/mac/fast/replaced/width100percent-radio-expected.txt:
     56        * platform/mac/fast/text/textIteratorNilRenderer-expected.txt:
     57        * platform/mac/fast/text/whitespace/normal-after-nowrap-breaking-expected.txt:
     58        * platform/mac/http/tests/navigation/javascriptlink-frames-expected.txt:
     59        * platform/mac/tables/mozilla/bugs/bug1318-expected.txt:
     60        * platform/mac/tables/mozilla/bugs/bug4527-expected.txt:
     61        * platform/mac/tables/mozilla_expected_failures/core/captions1-expected.txt:
     62        * platform/mac/tables/mozilla_expected_failures/core/captions2-expected.txt:
     63
    1642014-01-24  Oliver Hunt  <oliver@apple.com>
    265
  • trunk/LayoutTests/platform/mac-mountainlion/fast/block/margin-collapse/103-expected.txt

    r161906 r162742  
    8181                text run at (0,2) width 220: "Your research is primarily focused on:"
    8282            RenderBlock {SPAN} at (325,250) size 180x21 [color=#333333]
    83               RenderBlock {INPUT} at (2,3) size 13x13 [color=#000000]
    84               RenderText {#text} at (17,2) size 33x15
    85                 text run at (17,2) width 33: "Texts"
     83              RenderBlock {INPUT} at (2,3) size 12x13 [color=#000000]
     84              RenderText {#text} at (16,2) size 32x15
     85                text run at (16,2) width 32: "Texts"
    8686            RenderBlock {SPAN} at (325,270) size 180x21 [color=#333333]
    87               RenderBlock {INPUT} at (2,3) size 13x13 [color=#000000]
    88               RenderText {#text} at (17,2) size 134x15
    89                 text run at (17,2) width 134: "Performance materials"
     87              RenderBlock {INPUT} at (2,3) size 12x13 [color=#000000]
     88              RenderText {#text} at (16,2) size 133x15
     89                text run at (16,2) width 133: "Performance materials"
    9090            RenderBlock {SPAN} at (325,290) size 180x21 [color=#333333]
    91               RenderBlock {INPUT} at (2,3) size 13x13 [color=#000000]
    92               RenderText {#text} at (17,2) size 22x15
    93                 text run at (17,2) width 22: "n/a"
     91              RenderBlock {INPUT} at (2,3) size 12x13 [color=#000000]
     92              RenderText {#text} at (16,2) size 21x15
     93                text run at (16,2) width 21: "n/a"
    9494            RenderBlock {H2} at (0,335) size 560x17 [color=#333333]
    9595              RenderText {#text} at (0,0) size 374x16
     
    101101              RenderText {#text} at (0,2) size 19x15
    102102                text run at (0,2) width 19: "Yes"
    103               RenderBlock {INPUT} at (21,3) size 13x13 [color=#000000]
    104               RenderText {#text} at (36,2) size 20x15
    105                 text run at (36,2) width 5: " "
    106                 text run at (40,2) width 16: "No"
    107               RenderBlock {INPUT} at (58,3) size 13x13 [color=#000000]
     103              RenderBlock {INPUT} at (21,3) size 12x13 [color=#000000]
     104              RenderText {#text} at (35,2) size 19x15
     105                text run at (35,2) width 4: " "
     106                text run at (39,2) width 15: "No"
     107              RenderBlock {INPUT} at (56,3) size 12x13 [color=#000000]
    108108              RenderText {#text} at (0,0) size 0x0
    109109            RenderBlock {P} at (0,394) size 560x21 [color=#333333]
  • trunk/LayoutTests/platform/mac-mountainlion/fast/forms/basic-inputs-expected.txt

    r161906 r162742  
    5252        RenderText {#text} at (1,1) size 7x18
    5353          text run at (1,1) width 7: "a"
    54         RenderBlock {INPUT} at (10,5) size 13x12
    55         RenderText {#text} at (25,1) size 66x18
    56           text run at (25,1) width 66: "checkbox "
    57         RenderBlock {INPUT} at (93,5) size 13x12
    58         RenderText {#text} at (108,1) size 9x18
    59           text run at (108,1) width 9: "b"
     54        RenderBlock {INPUT} at (10,5) size 12x12
     55        RenderText {#text} at (24,1) size 65x18
     56          text run at (24,1) width 65: "checkbox "
     57        RenderBlock {INPUT} at (91,5) size 12x12
     58        RenderText {#text} at (105,1) size 8x18
     59          text run at (105,1) width 8: "b"
    6060      RenderBlock {DIV} at (10,405) size 450x21 [border: (1px solid #FF0000)]
    6161        RenderText {#text} at (1,1) size 7x18
    6262          text run at (1,1) width 7: "a"
    63         RenderBlock {INPUT} at (10,4) size 13x13
    64         RenderText {#text} at (25,1) size 37x18
    65           text run at (25,1) width 37: "radio "
    66         RenderBlock {INPUT} at (64,4) size 13x13
    67         RenderText {#text} at (79,1) size 9x18
    68           text run at (79,1) width 9: "b"
     63        RenderBlock {INPUT} at (10,4) size 12x13
     64        RenderText {#text} at (24,1) size 36x18
     65          text run at (24,1) width 36: "radio "
     66        RenderBlock {INPUT} at (62,4) size 12x13
     67        RenderText {#text} at (76,1) size 8x18
     68          text run at (76,1) width 8: "b"
    6969layer at (31,330) size 117x13 scrollWidth 165
    7070  RenderBlock {DIV} at (3,3) size 117x13
  • trunk/LayoutTests/platform/mac-mountainlion/fast/forms/box-shadow-override-expected.txt

    r161906 r162742  
    3232        RenderText {#text} at (0,0) size 0x0
    3333      RenderBlock (anonymous) at (0,137) size 784x32
    34         RenderBlock {INPUT} at (2,12) size 13x13
    35         RenderText {#text} at (17,9) size 5x18
    36           text run at (17,9) width 5: " "
    37         RenderBlock {INPUT} at (24,13) size 13x12
    38         RenderText {#text} at (39,9) size 5x18
    39           text run at (39,9) width 5: " "
    40         RenderSlider {INPUT} at (45,8) size 130x15 [color=#909090] [bgcolor=#FFFFFF]
     34        RenderBlock {INPUT} at (2,12) size 12x13
     35        RenderText {#text} at (16,9) size 4x18
     36          text run at (16,9) width 4: " "
     37        RenderBlock {INPUT} at (22,13) size 12x12
     38        RenderText {#text} at (36,9) size 4x18
     39          text run at (36,9) width 4: " "
     40        RenderSlider {INPUT} at (42,8) size 129x15 [color=#909090] [bgcolor=#FFFFFF]
    4141          RenderFlexibleBox {DIV} at (0,0) size 129x15
    4242            RenderBlock {DIV} at (0,0) size 129x15
    4343              RenderBlock {DIV} at (57,0) size 15x15
    44         RenderText {#text} at (176,9) size 5x18
    45           text run at (176,9) width 5: " "
    46         RenderFileUploadControl {INPUT} at (182,10) size 238x18 "no file selected"
     44        RenderText {#text} at (173,9) size 4x18
     45          text run at (173,9) width 4: " "
     46        RenderFileUploadControl {INPUT} at (179,10) size 237x18 "no file selected"
    4747          RenderButton {INPUT} at (0,0) size 78x18 [bgcolor=#C0C0C0]
    4848            RenderBlock (anonymous) at (8,2) size 62x14
    4949              RenderText at (0,0) size 62x13
    5050                text run at (0,0) width 62: "Choose File"
    51         RenderText {#text} at (421,9) size 5x18
    52           text run at (421,9) width 5: " "
    53         RenderButton {INPUT} at (427,8) size 58x21 [bgcolor=#C0C0C0]
     51        RenderText {#text} at (418,9) size 4x18
     52          text run at (418,9) width 4: " "
     53        RenderButton {INPUT} at (424,8) size 58x21 [bgcolor=#C0C0C0]
    5454          RenderBlock (anonymous) at (8,2) size 42x17
    5555            RenderText at (0,0) size 42x16
    5656              text run at (0,0) width 42: "Button"
    57         RenderText {#text} at (486,9) size 5x18
    58           text run at (486,9) width 5: " "
    59         RenderButton {INPUT} at (492,10) size 52x18 [bgcolor=#C0C0C0]
     57        RenderText {#text} at (483,9) size 5x18
     58          text run at (483,9) width 5: " "
     59        RenderButton {INPUT} at (489,10) size 52x18 [bgcolor=#C0C0C0]
    6060          RenderBlock (anonymous) at (8,2) size 35x14
    6161            RenderText at (0,0) size 35x13
    6262              text run at (0,0) width 35: "Button"
    63         RenderText {#text} at (545,9) size 5x18
    64           text run at (545,9) width 5: " "
    65         RenderButton {INPUT} at (549,12) size 46x15 [bgcolor=#C0C0C0]
     63        RenderText {#text} at (542,9) size 5x18
     64          text run at (542,9) width 5: " "
     65        RenderButton {INPUT} at (546,12) size 45x15 [bgcolor=#C0C0C0]
    6666          RenderBlock (anonymous) at (8,2) size 29x11
    6767            RenderText at (0,0) size 29x11
    6868              text run at (0,0) width 29: "Button"
    69         RenderText {#text} at (594,9) size 5x18
    70           text run at (594,9) width 5: " "
    71         RenderButton {BUTTON} at (600,2) size 81x28 [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)]
     69        RenderText {#text} at (590,9) size 5x18
     70          text run at (590,9) width 5: " "
     71        RenderButton {BUTTON} at (596,2) size 81x28 [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)]
    7272          RenderBlock (anonymous) at (8,2) size 64x23
    7373            RenderText {#text} at (0,0) size 64x23
  • trunk/LayoutTests/platform/mac-mountainlion/fast/forms/form-element-geometry-expected.txt

    r161906 r162742  
    106106          text run at (0,0) width 200: "Baseline Alignment"
    107107      RenderBlock {DIV} at (0,363) size 769x30
    108         RenderInline {FONT} at (0,0) size 219x28
     108        RenderInline {FONT} at (0,0) size 215x28
    109109          RenderText {#text} at (0,0) size 43x28
    110110            text run at (0,0) width 43: "text "
     
    121121          RenderText {#text} at (170,0) size 7x28
    122122            text run at (170,0) width 7: " "
    123           RenderBlock {INPUT} at (179,11) size 13x13
    124           RenderText {#text} at (194,0) size 7x28
    125             text run at (194,0) width 7: " "
    126           RenderBlock {INPUT} at (203,12) size 13x12
     123          RenderBlock {INPUT} at (178,11) size 13x13
     124          RenderText {#text} at (192,0) size 7x28
     125            text run at (192,0) width 7: " "
     126          RenderBlock {INPUT} at (200,12) size 13x12
    127127          RenderText {#text} at (0,0) size 0x0
    128128      RenderBlock {DIV} at (0,392) size 769x23
     
    141141        RenderText {#text} at (152,1) size 5x18
    142142          text run at (152,1) width 5: " "
    143         RenderBlock {INPUT} at (159,4) size 13x13
    144         RenderText {#text} at (174,1) size 5x18
    145           text run at (174,1) width 5: " "
    146         RenderBlock {INPUT} at (181,5) size 13x12
     143        RenderBlock {INPUT} at (158,4) size 13x13
     144        RenderText {#text} at (172,1) size 5x18
     145          text run at (172,1) width 5: " "
     146        RenderBlock {INPUT} at (178,5) size 13x12
    147147        RenderText {#text} at (0,0) size 0x0
    148148      RenderBlock {DIV} at (0,414) size 769x23
    149         RenderInline {FONT} at (0,0) size 185x13
     149        RenderInline {FONT} at (0,0) size 181x13
    150150          RenderText {#text} at (0,5) size 18x13
    151151            text run at (0,5) width 18: "text "
     
    162162          RenderText {#text} at (142,5) size 4x13
    163163            text run at (142,5) width 4: " "
    164           RenderBlock {INPUT} at (148,4) size 13x13
    165           RenderText {#text} at (163,5) size 4x13
    166             text run at (163,5) width 4: " "
    167           RenderBlock {INPUT} at (169,5) size 13x12
     164          RenderBlock {INPUT} at (147,4) size 13x13
     165          RenderText {#text} at (161,5) size 4x13
     166            text run at (161,5) width 4: " "
     167          RenderBlock {INPUT} at (166,5) size 13x12
    168168          RenderText {#text} at (0,0) size 0x0
    169169      RenderBlock {DIV} at (0,436) size 769x44
  • trunk/LayoutTests/platform/mac-mountainlion/fast/forms/input-appearance-height-expected.txt

    r161906 r162742  
    2222        RenderText {#text} at (0,46) size 65x18
    2323          text run at (0,46) width 65: "checkbox "
    24         RenderBlock {INPUT} at (67,50) size 13x12
    25         RenderText {#text} at (82,46) size 5x18
    26           text run at (82,46) width 5: " "
    27         RenderBR {BR} at (86,60) size 1x0
     24        RenderBlock {INPUT} at (67,50) size 12x12
     25        RenderText {#text} at (81,46) size 4x18
     26          text run at (81,46) width 4: " "
     27        RenderBR {BR} at (85,60) size 0x0
    2828        RenderText {#text} at (0,66) size 24x18
    2929          text run at (0,66) width 24: "file "
     
    4444        RenderText {#text} at (0,105) size 36x18
    4545          text run at (0,105) width 36: "radio "
    46         RenderBlock {INPUT} at (38,108) size 13x13
    47         RenderText {#text} at (53,105) size 5x18
    48           text run at (53,105) width 5: " "
    49         RenderBR {BR} at (57,119) size 1x0
     46        RenderBlock {INPUT} at (38,108) size 12x13
     47        RenderText {#text} at (52,105) size 4x18
     48          text run at (52,105) width 4: " "
     49        RenderBR {BR} at (56,119) size 0x0
    5050        RenderText {#text} at (0,127) size 39x18
    5151          text run at (0,127) width 39: "range "
  • trunk/LayoutTests/platform/mac-mountainlion/fast/forms/input-value-expected.txt

    r161906 r162742  
    5858                  text run at (1,1) width 249: "check box with value property changed"
    5959              RenderTableCell {TD} at (389,54) size 243x20 [r=2 c=1 rs=1 cs=1]
    60                 RenderBlock {INPUT} at (3,4) size 13x12
     60                RenderBlock {INPUT} at (3,4) size 12x12
    6161              RenderTableCell {TD} at (634,54) size 62x20 [r=2 c=2 rs=1 cs=1]
    6262                RenderText {#text} at (1,1) size 28x18
     
    108108                  text run at (1,1) width 216: "radio with value property changed"
    109109              RenderTableCell {TD} at (389,146) size 243x21 [r=6 c=1 rs=1 cs=1]
    110                 RenderBlock {INPUT} at (3,4) size 13x13
     110                RenderBlock {INPUT} at (3,4) size 12x13
    111111              RenderTableCell {TD} at (634,146) size 62x20 [r=6 c=2 rs=1 cs=1]
    112112                RenderText {#text} at (1,1) size 28x18
     
    132132                  text run at (1,1) width 247: "check box with value attribute changed"
    133133              RenderTableCell {TD} at (389,196) size 243x20 [r=8 c=1 rs=1 cs=1]
    134                 RenderBlock {INPUT} at (3,4) size 13x12
     134                RenderBlock {INPUT} at (3,4) size 12x12
    135135              RenderTableCell {TD} at (634,196) size 62x20 [r=8 c=2 rs=1 cs=1]
    136136                RenderText {#text} at (1,1) size 28x18
     
    144144                  text run at (1,1) width 383: "text with value property changed, then turned into check box"
    145145              RenderTableCell {TD} at (389,218) size 243x20 [r=9 c=1 rs=1 cs=1]
    146                 RenderBlock {INPUT} at (3,4) size 13x12
     146                RenderBlock {INPUT} at (3,4) size 12x12
    147147              RenderTableCell {TD} at (634,218) size 62x20 [r=9 c=2 rs=1 cs=1]
    148148                RenderText {#text} at (1,1) size 28x18
     
    168168                  text run at (1,1) width 381: "text with value attribute changed, then turned into check box"
    169169              RenderTableCell {TD} at (389,267) size 243x20 [r=11 c=1 rs=1 cs=1]
    170                 RenderBlock {INPUT} at (3,4) size 13x12
     170                RenderBlock {INPUT} at (3,4) size 12x12
    171171              RenderTableCell {TD} at (634,267) size 62x20 [r=11 c=2 rs=1 cs=1]
    172172                RenderText {#text} at (1,1) size 28x18
  • trunk/LayoutTests/platform/mac-mountainlion/fast/replaced/replaced-breaking-expected.txt

    r161906 r162742  
    4141        RenderListBox {SELECT} at (3,296) size 48x57 [bgcolor=#FFFFFF] [border: (1px inset #808080)]
    4242        RenderText {#text} at (0,0) size 0x0
    43         RenderBlock {INPUT} at (3,358) size 13x12
    44         RenderBlock {INPUT} at (3,376) size 13x12
     43        RenderBlock {INPUT} at (3,358) size 12x12
     44        RenderBlock {INPUT} at (3,376) size 12x12
    4545        RenderText {#text} at (0,0) size 0x0
    46         RenderBlock {INPUT} at (3,394) size 13x13
    47         RenderBlock {INPUT} at (3,413) size 13x13
     46        RenderBlock {INPUT} at (3,394) size 12x13
     47        RenderBlock {INPUT} at (3,413) size 12x13
    4848        RenderText {#text} at (0,0) size 0x0
    4949        RenderIFrame {IFRAME} at (1,429) size 27x27 [border: (1px solid #000000)]
  • trunk/LayoutTests/platform/mac-mountainlion/fast/text/textIteratorNilRenderer-expected.txt

    r161906 r162742  
    2222                  RenderText {#text} at (0,0) size 0x0
    2323                RenderTableCell {TD} at (476,2) size 160x18 [r=0 c=3 rs=2 cs=1]
    24                   RenderInline {LABEL} at (0,0) size 117x13
     24                  RenderInline {LABEL} at (0,0) size 115x13
    2525                    RenderText {#text} at (0,0) size 0x0
    26                     RenderBlock {INPUT} at (12,3) size 13x12
    27                     RenderText {#text} at (27,3) size 100x13
    28                       text run at (27,3) width 100: " Remember this location"
     26                    RenderBlock {INPUT} at (12,3) size 12x12
     27                    RenderText {#text} at (26,3) size 99x13
     28                      text run at (26,3) width 99: " Remember this location"
    2929                  RenderText {#text} at (0,0) size 0x0
    3030        RenderBlock (anonymous) at (0,39) size 784x18
  • trunk/LayoutTests/platform/mac-mountainlion/http/tests/navigation/javascriptlink-frames-expected.txt

    r161906 r162742  
    4141                RenderTextControl {INPUT} at (336,96) size 123x19 [bgcolor=#FFFFFF] [border: (2px inset #000000)]
    4242                RenderBR {BR} at (461,110) size 0x0
    43                 RenderBlock {INPUT} at (2,136) size 13x13
    44                 RenderText {#text} at (17,118) size 74x37
    45                   text run at (17,118) width 74: " Male"
    46                 RenderBR {BR} at (90,147) size 1x0
    47                 RenderBlock {INPUT} at (2,173) size 13x13
    48                 RenderText {#text} at (17,155) size 103x37
    49                   text run at (17,155) width 103: " Female"
    50                 RenderBR {BR} at (119,184) size 1x0
    51                 RenderBlock {INPUT} at (2,211) size 13x12
    52                 RenderText {#text} at (17,192) size 131x37
    53                   text run at (17,192) width 131: " option #1"
    54                 RenderBR {BR} at (147,221) size 1x0
    55                 RenderBlock {INPUT} at (2,248) size 13x12
    56                 RenderText {#text} at (17,229) size 131x37
    57                   text run at (17,229) width 131: " option #2"
    58                 RenderBR {BR} at (147,258) size 1x0
     43                RenderBlock {INPUT} at (2,136) size 12x13
     44                RenderText {#text} at (16,118) size 73x37
     45                  text run at (16,118) width 73: " Male"
     46                RenderBR {BR} at (89,147) size 0x0
     47                RenderBlock {INPUT} at (2,173) size 12x13
     48                RenderText {#text} at (16,155) size 102x37
     49                  text run at (16,155) width 102: " Female"
     50                RenderBR {BR} at (118,184) size 0x0
     51                RenderBlock {INPUT} at (2,211) size 12x12
     52                RenderText {#text} at (16,192) size 130x37
     53                  text run at (16,192) width 130: " option #1"
     54                RenderBR {BR} at (146,221) size 0x0
     55                RenderBlock {INPUT} at (2,248) size 12x12
     56                RenderText {#text} at (16,229) size 130x37
     57                  text run at (16,229) width 130: " option #2"
     58                RenderBR {BR} at (146,258) size 0x0
    5959                RenderMenuList {SELECT} at (2,268) size 255x18 [bgcolor=#FFFFFF]
    6060                  RenderBlock (anonymous) at (0,0) size 255x18
  • trunk/LayoutTests/platform/mac-mountainlion/tables/mozilla/bugs/bug4527-expected.txt

    r161906 r162742  
    3434              RenderBR {BR} at (470,70) size 0x0
    3535          RenderTableRow {TR} at (0,70) size 613x25
    36             RenderTableCell {TD} at (126,70) size 245x25 [bgcolor=#CCCCCC] [r=1 c=1 rs=1 cs=1]
     36            RenderTableCell {TD} at (126,70) size 247x25 [bgcolor=#CCCCCC] [r=1 c=1 rs=1 cs=1]
    3737              RenderImage {IMG} at (0,0) size 232x25
    38             RenderTableCell {TD} at (371,71) size 108x23 [bgcolor=#CCCCCC] [r=1 c=2 rs=1 cs=1]
    39               RenderTextControl {INPUT} at (5,2) size 73x19 [bgcolor=#FFFFFF] [border: (2px inset #000000)]
    40               RenderImage {INPUT} at (80,3) size 25x18
    41             RenderTableCell {TD} at (479,70) size 134x25 [bgcolor=#CCCCCC] [r=1 c=3 rs=1 cs=1]
    42               RenderBlock {INPUT} at (2,5) size 13x13
    43               RenderImage {IMG} at (17,0) size 41x25
    44               RenderBlock {INPUT} at (60,5) size 13x13
    45               RenderText {#text} at (75,2) size 5x18
    46                 text run at (75,2) width 5: " "
    47               RenderImage {IMG} at (79,0) size 47x25
    48 layer at (387,84) size 67x13
     38            RenderTableCell {TD} at (373,71) size 109x23 [bgcolor=#CCCCCC] [r=1 c=2 rs=1 cs=1]
     39              RenderTextControl {INPUT} at (5,2) size 74x19 [bgcolor=#FFFFFF] [border: (2px inset #000000)]
     40              RenderImage {INPUT} at (80,3) size 26x18
     41            RenderTableCell {TD} at (482,70) size 131x25 [bgcolor=#CCCCCC] [r=1 c=3 rs=1 cs=1]
     42              RenderBlock {INPUT} at (2,5) size 12x13
     43              RenderImage {IMG} at (16,0) size 40x25
     44              RenderBlock {INPUT} at (58,5) size 12x13
     45              RenderText {#text} at (72,2) size 4x18
     46                text run at (72,2) width 4: " "
     47              RenderImage {IMG} at (76,0) size 46x25
     48layer at (390,84) size 67x13
    4949  RenderBlock {DIV} at (3,3) size 67x13
  • trunk/LayoutTests/platform/mac/compositing/overflow/theme-affects-visual-overflow-expected.txt

    r161884 r162742  
    66layer at (8,8) size 784x21
    77  RenderBlock {DIV} at (0,0) size 784x21
    8     RenderText {#text} at (20,2) size 5x18
    9       text run at (20,2) width 5: " "
    10     RenderBlock {SPAN} at (24,16) size 21x0
    11     RenderText {#text} at (44,2) size 5x18
    12       text run at (44,2) width 5: " "
     8    RenderText {#text} at (19,2) size 4x18
     9      text run at (19,2) width 4: " "
     10    RenderBlock {SPAN} at (23,16) size 20x0
     11    RenderText {#text} at (43,2) size 4x18
     12      text run at (43,2) width 4: " "
    1313    RenderText {#text} at (0,0) size 0x0
    14 layer at (11,11) size 15x15
    15   RenderBlock (relative positioned) {INPUT} at (2,3) size 16x15
    16 layer at (60,11) size 15x15
    17   RenderBlock (relative positioned) {INPUT} at (51,3) size 16x15
     14layer at (10,11) size 15x15
     15  RenderBlock (relative positioned) {INPUT} at (2,3) size 15x15
     16layer at (57,11) size 15x15
     17  RenderBlock (relative positioned) {INPUT} at (49,3) size 15x15
  • trunk/LayoutTests/platform/mac/css1/box_properties/acid_test-expected.txt

    r161884 r162742  
    2424                  RenderText {#text} at (0,4) size 28x12
    2525                    text run at (0,4) width 28: "bang "
    26                   RenderBlock {INPUT} at (30,3) size 13x13 [color=#000000]
     26                  RenderBlock {INPUT} at (30,3) size 12x13 [color=#000000]
    2727                  RenderText {#text} at (0,0) size 0x0
    2828                RenderBlock {P} at (0,20) size 140x20
    2929                  RenderText {#text} at (0,4) size 47x12
    3030                    text run at (0,4) width 47: "whimper "
    31                   RenderBlock {INPUT} at (49,3) size 13x13 [color=#000000]
     31                  RenderBlock {INPUT} at (49,3) size 12x13 [color=#000000]
    3232                  RenderText {#text} at (0,0) size 0x0
    3333              RenderBlock (anonymous) at (10,60) size 140x0
  • trunk/LayoutTests/platform/mac/css2.1/t09-c5526c-display-00-e-expected.txt

    r161884 r162742  
    2424                  RenderText {#text} at (0,4) size 28x12
    2525                    text run at (0,4) width 28: "bang "
    26                   RenderBlock {INPUT} at (30,3) size 13x13 [color=#000000]
     26                  RenderBlock {INPUT} at (30,3) size 12x13 [color=#000000]
    2727                  RenderText {#text} at (0,0) size 0x0
    2828                RenderBlock {P} at (0,20) size 140x20
    2929                  RenderText {#text} at (0,4) size 47x12
    3030                    text run at (0,4) width 47: "whimper "
    31                   RenderBlock {INPUT} at (49,3) size 13x13 [color=#000000]
     31                  RenderBlock {INPUT} at (49,3) size 12x13 [color=#000000]
    3232                  RenderText {#text} at (0,0) size 0x0
    3333              RenderBlock (anonymous) at (10,60) size 140x0
  • trunk/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-25-expected.txt

    r161884 r162742  
    55    RenderBody {BODY} at (8,16) size 784x19
    66      RenderBlock {P} at (0,0) size 784x19
    7         RenderBlock {INPUT} at (2,4) size 13x12 [bgcolor=#00FF00]
    8         RenderText {#text} at (17,0) size 5x18
    9           text run at (17,0) width 5: " "
    10         RenderInline {SPAN} at (0,0) size 389x18 [bgcolor=#00FF00]
    11           RenderText {#text} at (21,0) size 389x18
    12             text run at (21,0) width 389: "Everything in this paragraph should have a green background"
     7        RenderBlock {INPUT} at (2,4) size 12x12 [bgcolor=#00FF00]
     8        RenderText {#text} at (16,0) size 4x18
     9          text run at (16,0) width 4: " "
     10        RenderInline {SPAN} at (0,0) size 388x18 [bgcolor=#00FF00]
     11          RenderText {#text} at (20,0) size 388x18
     12            text run at (20,0) width 388: "Everything in this paragraph should have a green background"
  • trunk/LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-70-expected.txt

    r161884 r162742  
    55    RenderBody {BODY} at (8,16) size 784x19
    66      RenderBlock {P} at (0,0) size 784x19
    7         RenderBlock {INPUT} at (2,4) size 13x12 [bgcolor=#00FF00]
    8         RenderText {#text} at (17,0) size 5x18
    9           text run at (17,0) width 5: " "
    10         RenderInline {SPAN} at (0,0) size 389x18 [bgcolor=#00FF00]
    11           RenderText {#text} at (21,0) size 389x18
    12             text run at (21,0) width 389: "Everything in this paragraph should have a green background"
     7        RenderBlock {INPUT} at (2,4) size 12x12 [bgcolor=#00FF00]
     8        RenderText {#text} at (16,0) size 4x18
     9          text run at (16,0) width 4: " "
     10        RenderInline {SPAN} at (0,0) size 388x18 [bgcolor=#00FF00]
     11          RenderText {#text} at (20,0) size 388x18
     12            text run at (20,0) width 388: "Everything in this paragraph should have a green background"
  • trunk/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-25-expected.txt

    r161884 r162742  
    55    RenderBody {body} at (8,16) size 784x19
    66      RenderBlock {p} at (0,0) size 784x19
    7         RenderBlock {input} at (2,4) size 13x12 [bgcolor=#00FF00]
    8         RenderText {#text} at (17,0) size 5x18
    9           text run at (17,0) width 5: " "
    10         RenderInline {span} at (0,0) size 389x18 [bgcolor=#00FF00]
    11           RenderText {#text} at (21,0) size 389x18
    12             text run at (21,0) width 389: "Everything in this paragraph should have a green background"
     7        RenderBlock {input} at (2,4) size 12x12 [bgcolor=#00FF00]
     8        RenderText {#text} at (16,0) size 4x18
     9          text run at (16,0) width 4: " "
     10        RenderInline {span} at (0,0) size 388x18 [bgcolor=#00FF00]
     11          RenderText {#text} at (20,0) size 388x18
     12            text run at (20,0) width 388: "Everything in this paragraph should have a green background"
  • trunk/LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-70-expected.txt

    r161884 r162742  
    55    RenderBody {body} at (8,16) size 784x19
    66      RenderBlock {p} at (0,0) size 784x19
    7         RenderBlock {input} at (2,4) size 13x12 [bgcolor=#00FF00]
    8         RenderText {#text} at (17,0) size 5x18
    9           text run at (17,0) width 5: " "
    10         RenderInline {span} at (0,0) size 389x18 [bgcolor=#00FF00]
    11           RenderText {#text} at (21,0) size 389x18
    12             text run at (21,0) width 389: "Everything in this paragraph should have a green background"
     7        RenderBlock {input} at (2,4) size 12x12 [bgcolor=#00FF00]
     8        RenderText {#text} at (16,0) size 4x18
     9          text run at (16,0) width 4: " "
     10        RenderInline {span} at (0,0) size 388x18 [bgcolor=#00FF00]
     11          RenderText {#text} at (20,0) size 388x18
     12            text run at (20,0) width 388: "Everything in this paragraph should have a green background"
  • trunk/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-25-expected.txt

    r161884 r162742  
    44  RenderBlock {test} at (0,0) size 800x51
    55    RenderBlock {p} at (0,16) size 800x19
    6       RenderBlock {input} at (2,4) size 13x12 [bgcolor=#00FF00]
    7       RenderText {#text} at (17,0) size 5x18
    8         text run at (17,0) width 5: " "
    9       RenderInline {span} at (0,0) size 389x18 [bgcolor=#00FF00]
    10         RenderText {#text} at (21,0) size 389x18
    11           text run at (21,0) width 389: "Everything in this paragraph should have a green background"
     6      RenderBlock {input} at (2,4) size 12x12 [bgcolor=#00FF00]
     7      RenderText {#text} at (16,0) size 4x18
     8        text run at (16,0) width 4: " "
     9      RenderInline {span} at (0,0) size 388x18 [bgcolor=#00FF00]
     10        RenderText {#text} at (20,0) size 388x18
     11          text run at (20,0) width 388: "Everything in this paragraph should have a green background"
  • trunk/LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-70-expected.txt

    r161884 r162742  
    44  RenderBlock {test} at (0,0) size 800x51
    55    RenderBlock {p} at (0,16) size 800x19
    6       RenderBlock {input} at (2,4) size 13x12 [bgcolor=#00FF00]
    7       RenderText {#text} at (17,0) size 5x18
    8         text run at (17,0) width 5: " "
    9       RenderInline {span} at (0,0) size 389x18 [bgcolor=#00FF00]
    10         RenderText {#text} at (21,0) size 389x18
    11           text run at (21,0) width 389: "Everything in this paragraph should have a green background"
     6      RenderBlock {input} at (2,4) size 12x12 [bgcolor=#00FF00]
     7      RenderText {#text} at (16,0) size 4x18
     8        text run at (16,0) width 4: " "
     9      RenderInline {span} at (0,0) size 388x18 [bgcolor=#00FF00]
     10        RenderText {#text} at (20,0) size 388x18
     11          text run at (20,0) width 388: "Everything in this paragraph should have a green background"
  • trunk/LayoutTests/platform/mac/fast/block/basic/011-expected.txt

    r161884 r162742  
    2424                  RenderText {#text} at (0,4) size 28x12
    2525                    text run at (0,4) width 28: "bang "
    26                   RenderBlock {INPUT} at (30,3) size 13x13 [color=#000000]
     26                  RenderBlock {INPUT} at (30,3) size 12x13 [color=#000000]
    2727                  RenderText {#text} at (0,0) size 0x0
    2828                RenderBlock {P} at (0,20) size 140x20
    2929                  RenderText {#text} at (0,4) size 47x12
    3030                    text run at (0,4) width 47: "whimper "
    31                   RenderBlock {INPUT} at (49,3) size 13x13 [color=#000000]
     31                  RenderBlock {INPUT} at (49,3) size 12x13 [color=#000000]
    3232                  RenderText {#text} at (0,0) size 0x0
    3333              RenderBlock (anonymous) at (10,60) size 140x0
  • trunk/LayoutTests/platform/mac/fast/block/margin-collapse/103-expected.txt

    r161884 r162742  
    8181                text run at (0,2) width 220: "Your research is primarily focused on:"
    8282            RenderBlock {SPAN} at (325,250) size 180x21 [color=#333333]
    83               RenderBlock {INPUT} at (2,3) size 13x13 [color=#000000]
    84               RenderText {#text} at (17,2) size 33x15
    85                 text run at (17,2) width 33: "Texts"
     83              RenderBlock {INPUT} at (2,3) size 12x13 [color=#000000]
     84              RenderText {#text} at (16,2) size 32x15
     85                text run at (16,2) width 32: "Texts"
    8686            RenderBlock {SPAN} at (325,270) size 180x21 [color=#333333]
    87               RenderBlock {INPUT} at (2,3) size 13x13 [color=#000000]
    88               RenderText {#text} at (17,2) size 134x15
    89                 text run at (17,2) width 134: "Performance materials"
     87              RenderBlock {INPUT} at (2,3) size 12x13 [color=#000000]
     88              RenderText {#text} at (16,2) size 133x15
     89                text run at (16,2) width 133: "Performance materials"
    9090            RenderBlock {SPAN} at (325,290) size 180x21 [color=#333333]
    91               RenderBlock {INPUT} at (2,3) size 13x13 [color=#000000]
    92               RenderText {#text} at (17,2) size 22x15
    93                 text run at (17,2) width 22: "n/a"
     91              RenderBlock {INPUT} at (2,3) size 12x13 [color=#000000]
     92              RenderText {#text} at (16,2) size 21x15
     93                text run at (16,2) width 21: "n/a"
    9494            RenderBlock {H2} at (0,335) size 560x17 [color=#333333]
    9595              RenderText {#text} at (0,0) size 374x16
     
    101101              RenderText {#text} at (0,2) size 19x15
    102102                text run at (0,2) width 19: "Yes"
    103               RenderBlock {INPUT} at (21,3) size 13x13 [color=#000000]
    104               RenderText {#text} at (36,2) size 20x15
    105                 text run at (36,2) width 5: " "
    106                 text run at (40,2) width 16: "No"
    107               RenderBlock {INPUT} at (58,3) size 13x13 [color=#000000]
     103              RenderBlock {INPUT} at (21,3) size 12x13 [color=#000000]
     104              RenderText {#text} at (35,2) size 19x15
     105                text run at (35,2) width 4: " "
     106                text run at (39,2) width 15: "No"
     107              RenderBlock {INPUT} at (56,3) size 12x13 [color=#000000]
    108108              RenderText {#text} at (0,0) size 0x0
    109109            RenderBlock {P} at (0,394) size 560x21 [color=#333333]
  • trunk/LayoutTests/platform/mac/fast/css/non-standard-checkbox-size-expected.txt

    r161884 r162742  
    66      RenderText {#text} at (0,37) size 289x18
    77        text run at (0,37) width 289: "The following inputs should not be stretched. "
    8       RenderBlock {INPUT} at (291,3) size 13x50
    9       RenderText {#text} at (306,37) size 5x18
    10         text run at (306,37) width 5: " "
    11       RenderBlock {INPUT} at (313,3) size 13x50
     8      RenderBlock {INPUT} at (291,3) size 12x50
     9      RenderText {#text} at (305,37) size 4x18
     10        text run at (305,37) width 4: " "
     11      RenderBlock {INPUT} at (311,3) size 12x50
    1212      RenderText {#text} at (0,0) size 0x0
  • trunk/LayoutTests/platform/mac/fast/forms/001-expected.txt

    r161884 r162742  
    2020          RenderTableSection {TBODY} at (2,2) size 780x20
    2121            RenderTableRow {TR} at (0,0) size 780x20
    22               RenderTableCell {TD} at (0,0) size 20x20 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
    23                 RenderBlock {INPUT} at (3,4) size 13x12
    24               RenderTableCell {TD} at (20,9) size 760x2 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1]
     22              RenderTableCell {TD} at (0,0) size 18x20 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
     23                RenderBlock {INPUT} at (3,4) size 12x12
     24              RenderTableCell {TD} at (18,9) size 762x2 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1]
    2525      RenderBlock {P} at (0,200) size 784x25
    2626        RenderTable {TABLE} at (0,0) size 784x24 [border: (2px outset #808080)]
    2727          RenderTableSection {TBODY} at (2,2) size 780x20
    2828            RenderTableRow {TR} at (0,0) size 780x20
    29               RenderTableCell {TD} at (0,0) size 20x20 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
    30                 RenderBlock {INPUT} at (3,4) size 13x12
    31               RenderTableCell {TD} at (20,9) size 760x2 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1]
     29              RenderTableCell {TD} at (0,0) size 18x20 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
     30                RenderBlock {INPUT} at (3,4) size 12x12
     31              RenderTableCell {TD} at (18,9) size 762x2 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1]
    3232      RenderBlock {P} at (0,240) size 784x29
    3333        RenderTable {TABLE} at (0,0) size 784x28 [border: (2px outset #808080)]
  • trunk/LayoutTests/platform/mac/fast/forms/basic-inputs-expected.txt

    r161884 r162742  
    5252        RenderText {#text} at (1,1) size 7x18
    5353          text run at (1,1) width 7: "a"
    54         RenderBlock {INPUT} at (10,5) size 13x12
    55         RenderText {#text} at (25,1) size 66x18
    56           text run at (25,1) width 66: "checkbox "
    57         RenderBlock {INPUT} at (93,5) size 13x12
    58         RenderText {#text} at (108,1) size 9x18
    59           text run at (108,1) width 9: "b"
     54        RenderBlock {INPUT} at (10,5) size 12x12
     55        RenderText {#text} at (24,1) size 65x18
     56          text run at (24,1) width 65: "checkbox "
     57        RenderBlock {INPUT} at (91,5) size 12x12
     58        RenderText {#text} at (105,1) size 8x18
     59          text run at (105,1) width 8: "b"
    6060      RenderBlock {DIV} at (10,405) size 450x21 [border: (1px solid #FF0000)]
    6161        RenderText {#text} at (1,1) size 7x18
    6262          text run at (1,1) width 7: "a"
    63         RenderBlock {INPUT} at (10,4) size 13x13
    64         RenderText {#text} at (25,1) size 37x18
    65           text run at (25,1) width 37: "radio "
    66         RenderBlock {INPUT} at (64,4) size 13x13
    67         RenderText {#text} at (79,1) size 9x18
    68           text run at (79,1) width 9: "b"
     63        RenderBlock {INPUT} at (10,4) size 12x13
     64        RenderText {#text} at (24,1) size 36x18
     65          text run at (24,1) width 36: "radio "
     66        RenderBlock {INPUT} at (62,4) size 12x13
     67        RenderText {#text} at (76,1) size 8x18
     68          text run at (76,1) width 8: "b"
    6969layer at (31,330) size 139x13 scrollWidth 165
    7070  RenderBlock {DIV} at (3,3) size 140x13
  • trunk/LayoutTests/platform/mac/fast/forms/box-shadow-override-expected.txt

    r161884 r162742  
    3232        RenderText {#text} at (0,0) size 0x0
    3333      RenderBlock (anonymous) at (0,137) size 784x32
    34         RenderBlock {INPUT} at (2,12) size 13x13
    35         RenderText {#text} at (17,9) size 5x18
    36           text run at (17,9) width 5: " "
    37         RenderBlock {INPUT} at (24,13) size 13x12
    38         RenderText {#text} at (39,9) size 5x18
    39           text run at (39,9) width 5: " "
    40         RenderSlider {INPUT} at (45,8) size 130x15 [color=#909090] [bgcolor=#FFFFFF]
     34        RenderBlock {INPUT} at (2,12) size 12x13
     35        RenderText {#text} at (16,9) size 4x18
     36          text run at (16,9) width 4: " "
     37        RenderBlock {INPUT} at (22,13) size 12x12
     38        RenderText {#text} at (36,9) size 4x18
     39          text run at (36,9) width 4: " "
     40        RenderSlider {INPUT} at (42,8) size 129x15 [color=#909090] [bgcolor=#FFFFFF]
    4141          RenderFlexibleBox {DIV} at (0,0) size 129x15
    4242            RenderBlock {DIV} at (0,0) size 129x15
    4343              RenderBlock {DIV} at (57,0) size 15x15
    44         RenderText {#text} at (176,9) size 5x18
    45           text run at (176,9) width 5: " "
    46         RenderFileUploadControl {INPUT} at (182,10) size 238x18 "no file selected"
     44        RenderText {#text} at (173,9) size 4x18
     45          text run at (173,9) width 4: " "
     46        RenderFileUploadControl {INPUT} at (179,10) size 237x18 "no file selected"
    4747          RenderButton {INPUT} at (0,0) size 78x18 [bgcolor=#C0C0C0]
    4848            RenderBlock (anonymous) at (8,2) size 62x14
    4949              RenderText at (0,0) size 62x13
    5050                text run at (0,0) width 62: "Choose File"
    51         RenderText {#text} at (421,9) size 5x18
    52           text run at (421,9) width 5: " "
    53         RenderButton {INPUT} at (427,8) size 58x21 [bgcolor=#C0C0C0]
     51        RenderText {#text} at (418,9) size 4x18
     52          text run at (418,9) width 4: " "
     53        RenderButton {INPUT} at (424,8) size 58x21 [bgcolor=#C0C0C0]
    5454          RenderBlock (anonymous) at (8,2) size 42x17
    5555            RenderText at (0,0) size 42x16
    5656              text run at (0,0) width 42: "Button"
    57         RenderText {#text} at (486,9) size 5x18
    58           text run at (486,9) width 5: " "
    59         RenderButton {INPUT} at (492,10) size 52x18 [bgcolor=#C0C0C0]
     57        RenderText {#text} at (483,9) size 5x18
     58          text run at (483,9) width 5: " "
     59        RenderButton {INPUT} at (489,10) size 52x18 [bgcolor=#C0C0C0]
    6060          RenderBlock (anonymous) at (8,2) size 35x14
    6161            RenderText at (0,0) size 35x13
    6262              text run at (0,0) width 35: "Button"
    63         RenderText {#text} at (545,9) size 5x18
    64           text run at (545,9) width 5: " "
    65         RenderButton {INPUT} at (549,12) size 46x15 [bgcolor=#C0C0C0]
     63        RenderText {#text} at (542,9) size 5x18
     64          text run at (542,9) width 5: " "
     65        RenderButton {INPUT} at (546,12) size 45x15 [bgcolor=#C0C0C0]
    6666          RenderBlock (anonymous) at (8,2) size 29x11
    6767            RenderText at (0,0) size 29x11
    6868              text run at (0,0) width 29: "Button"
    69         RenderText {#text} at (594,9) size 5x18
    70           text run at (594,9) width 5: " "
    71         RenderButton {BUTTON} at (600,2) size 81x28 [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)]
     69        RenderText {#text} at (590,9) size 5x18
     70          text run at (590,9) width 5: " "
     71        RenderButton {BUTTON} at (596,2) size 81x28 [bgcolor=#C0C0C0] [border: none (2px outset #C0C0C0) none (2px outset #C0C0C0)]
    7272          RenderBlock (anonymous) at (8,2) size 64x23
    7373            RenderText {#text} at (0,0) size 64x23
  • trunk/LayoutTests/platform/mac/fast/forms/file/file-input-disabled-expected.txt

    r161884 r162742  
    66      RenderBlock {FORM} at (0,0) size 784x59
    77        RenderBlock (anonymous) at (0,0) size 784x59
    8           RenderBlock {INPUT} at (2,4) size 13x12
    9           RenderInline {B} at (0,0) size 76x18
    10             RenderText {#text} at (17,0) size 76x18
    11               text run at (17,0) width 76: "Attach File"
    12           RenderBR {BR} at (92,14) size 1x0
     8          RenderBlock {INPUT} at (2,4) size 12x12
     9          RenderInline {B} at (0,0) size 75x18
     10            RenderText {#text} at (16,0) size 75x18
     11              text run at (16,0) width 75: "Attach File"
     12          RenderBR {BR} at (91,14) size 0x0
    1313          RenderBR {BR} at (0,19) size 0x18
    1414          RenderText {#text} at (0,38) size 86x18
  • trunk/LayoutTests/platform/mac/fast/forms/form-element-geometry-expected.txt

    r161884 r162742  
    106106          text run at (0,0) width 200: "Baseline Alignment"
    107107      RenderBlock {DIV} at (0,363) size 769x30
    108         RenderInline {FONT} at (0,0) size 219x28
     108        RenderInline {FONT} at (0,0) size 215x28
    109109          RenderText {#text} at (0,0) size 43x28
    110110            text run at (0,0) width 43: "text "
     
    121121          RenderText {#text} at (170,0) size 7x28
    122122            text run at (170,0) width 7: " "
    123           RenderBlock {INPUT} at (179,11) size 13x13
    124           RenderText {#text} at (194,0) size 7x28
    125             text run at (194,0) width 7: " "
    126           RenderBlock {INPUT} at (203,12) size 13x12
     123          RenderBlock {INPUT} at (178,11) size 13x13
     124          RenderText {#text} at (192,0) size 7x28
     125            text run at (192,0) width 7: " "
     126          RenderBlock {INPUT} at (200,12) size 13x12
    127127          RenderText {#text} at (0,0) size 0x0
    128128      RenderBlock {DIV} at (0,392) size 769x23
     
    141141        RenderText {#text} at (152,1) size 5x18
    142142          text run at (152,1) width 5: " "
    143         RenderBlock {INPUT} at (159,4) size 13x13
    144         RenderText {#text} at (174,1) size 5x18
    145           text run at (174,1) width 5: " "
    146         RenderBlock {INPUT} at (181,5) size 13x12
     143        RenderBlock {INPUT} at (158,4) size 13x13
     144        RenderText {#text} at (172,1) size 5x18
     145          text run at (172,1) width 5: " "
     146        RenderBlock {INPUT} at (178,5) size 13x12
    147147        RenderText {#text} at (0,0) size 0x0
    148148      RenderBlock {DIV} at (0,414) size 769x23
    149         RenderInline {FONT} at (0,0) size 185x13
     149        RenderInline {FONT} at (0,0) size 181x13
    150150          RenderText {#text} at (0,5) size 18x13
    151151            text run at (0,5) width 18: "text "
     
    162162          RenderText {#text} at (142,5) size 4x13
    163163            text run at (142,5) width 4: " "
    164           RenderBlock {INPUT} at (148,4) size 13x13
    165           RenderText {#text} at (163,5) size 4x13
    166             text run at (163,5) width 4: " "
    167           RenderBlock {INPUT} at (169,5) size 13x12
     164          RenderBlock {INPUT} at (147,4) size 13x13
     165          RenderText {#text} at (161,5) size 4x13
     166            text run at (161,5) width 4: " "
     167          RenderBlock {INPUT} at (166,5) size 13x12
    168168          RenderText {#text} at (0,0) size 0x0
    169169      RenderBlock {DIV} at (0,436) size 769x44
  • trunk/LayoutTests/platform/mac/fast/forms/formmove-expected.txt

    r161884 r162742  
    55    RenderBody {BODY} at (8,8) size 784x584
    66      RenderBlock {FORM} at (0,0) size 784x19
    7         RenderBlock {INPUT} at (2,3) size 13x13
    8         RenderText {#text} at (17,0) size 35x18
    9           text run at (17,0) width 35: "Two "
    10         RenderBlock {INPUT} at (54,3) size 13x13
    11         RenderText {#text} at (69,0) size 38x18
    12           text run at (69,0) width 38: "Three"
     7        RenderBlock {INPUT} at (2,3) size 12x13
     8        RenderText {#text} at (16,0) size 34x18
     9          text run at (16,0) width 34: "Two "
     10        RenderBlock {INPUT} at (52,3) size 12x13
     11        RenderText {#text} at (66,0) size 37x18
     12          text run at (66,0) width 37: "Three"
    1313      RenderBlock {FORM} at (0,35) size 784x19
    14         RenderBlock {INPUT} at (2,3) size 13x13
    15         RenderText {#text} at (17,0) size 32x18
    16           text run at (17,0) width 32: "One "
    17         RenderBlock {INPUT} at (51,3) size 13x13
    18         RenderText {#text} at (66,0) size 35x18
    19           text run at (66,0) width 35: "Two "
    20         RenderBlock {INPUT} at (103,3) size 13x13
    21         RenderText {#text} at (118,0) size 42x18
    22           text run at (118,0) width 42: "Three "
    23         RenderBlock {INPUT} at (162,3) size 13x13
    24         RenderText {#text} at (177,0) size 28x18
    25           text run at (177,0) width 28: "One"
     14        RenderBlock {INPUT} at (2,3) size 12x13
     15        RenderText {#text} at (16,0) size 31x18
     16          text run at (16,0) width 31: "One "
     17        RenderBlock {INPUT} at (49,3) size 12x13
     18        RenderText {#text} at (63,0) size 34x18
     19          text run at (63,0) width 34: "Two "
     20        RenderBlock {INPUT} at (99,3) size 12x13
     21        RenderText {#text} at (113,0) size 41x18
     22          text run at (113,0) width 41: "Three "
     23        RenderBlock {INPUT} at (156,3) size 12x13
     24        RenderText {#text} at (170,0) size 27x18
     25          text run at (170,0) width 27: "One"
    2626      RenderBlock (anonymous) at (0,70) size 784x36
    2727        RenderText {#text} at (0,0) size 766x36
  • trunk/LayoutTests/platform/mac/fast/forms/formmove2-expected.txt

    r161884 r162742  
    55    RenderBody {BODY} at (8,8) size 784x584
    66      RenderBlock {FORM} at (0,0) size 784x19
    7         RenderBlock {INPUT} at (2,3) size 13x13
    8         RenderBlock {INPUT} at (20,3) size 13x13
     7        RenderBlock {INPUT} at (2,3) size 12x13
     8        RenderBlock {INPUT} at (18,3) size 12x13
    99      RenderBlock (anonymous) at (0,35) size 784x36
    1010        RenderText {#text} at (0,0) size 777x36
  • trunk/LayoutTests/platform/mac/fast/forms/indeterminate-expected.txt

    r161884 r162742  
    44  RenderBlock {HTML} at (0,0) size 800x600
    55    RenderBody {BODY} at (8,8) size 784x584
    6       RenderText {#text} at (17,0) size 492x18
    7         text run at (17,0) width 492: " This checkbox should look 50% transparent and should be in the mixed state."
     6      RenderText {#text} at (16,0) size 491x18
     7        text run at (16,0) width 491: " This checkbox should look 50% transparent and should be in the mixed state."
    88      RenderText {#text} at (0,0) size 0x0
    9 layer at (11,12) size 12x12
    10   RenderBlock {INPUT} at (2,4) size 13x12
     9layer at (10,12) size 12x12
     10  RenderBlock {INPUT} at (2,4) size 12x12
  • trunk/LayoutTests/platform/mac/fast/forms/input-appearance-height-expected.txt

    r161884 r162742  
    2222        RenderText {#text} at (0,46) size 65x18
    2323          text run at (0,46) width 65: "checkbox "
    24         RenderBlock {INPUT} at (67,50) size 13x12
    25         RenderText {#text} at (82,46) size 5x18
    26           text run at (82,46) width 5: " "
    27         RenderBR {BR} at (86,60) size 1x0
     24        RenderBlock {INPUT} at (67,50) size 12x12
     25        RenderText {#text} at (81,46) size 4x18
     26          text run at (81,46) width 4: " "
     27        RenderBR {BR} at (85,60) size 0x0
    2828        RenderText {#text} at (0,66) size 24x18
    2929          text run at (0,66) width 24: "file "
     
    4444        RenderText {#text} at (0,105) size 36x18
    4545          text run at (0,105) width 36: "radio "
    46         RenderBlock {INPUT} at (38,108) size 13x13
    47         RenderText {#text} at (53,105) size 5x18
    48           text run at (53,105) width 5: " "
    49         RenderBR {BR} at (57,119) size 1x0
     46        RenderBlock {INPUT} at (38,108) size 12x13
     47        RenderText {#text} at (52,105) size 4x18
     48          text run at (52,105) width 4: " "
     49        RenderBR {BR} at (56,119) size 0x0
    5050        RenderText {#text} at (0,127) size 39x18
    5151          text run at (0,127) width 39: "range "
  • trunk/LayoutTests/platform/mac/fast/forms/input-value-expected.txt

    r161884 r162742  
    5858                  text run at (1,1) width 249: "check box with value property changed"
    5959              RenderTableCell {TD} at (389,54) size 243x20 [r=2 c=1 rs=1 cs=1]
    60                 RenderBlock {INPUT} at (3,4) size 13x12
     60                RenderBlock {INPUT} at (3,4) size 12x12
    6161              RenderTableCell {TD} at (634,54) size 62x20 [r=2 c=2 rs=1 cs=1]
    6262                RenderText {#text} at (1,1) size 28x18
     
    108108                  text run at (1,1) width 216: "radio with value property changed"
    109109              RenderTableCell {TD} at (389,146) size 243x21 [r=6 c=1 rs=1 cs=1]
    110                 RenderBlock {INPUT} at (3,4) size 13x13
     110                RenderBlock {INPUT} at (3,4) size 12x13
    111111              RenderTableCell {TD} at (634,146) size 62x20 [r=6 c=2 rs=1 cs=1]
    112112                RenderText {#text} at (1,1) size 28x18
     
    132132                  text run at (1,1) width 247: "check box with value attribute changed"
    133133              RenderTableCell {TD} at (389,196) size 243x20 [r=8 c=1 rs=1 cs=1]
    134                 RenderBlock {INPUT} at (3,4) size 13x12
     134                RenderBlock {INPUT} at (3,4) size 12x12
    135135              RenderTableCell {TD} at (634,196) size 62x20 [r=8 c=2 rs=1 cs=1]
    136136                RenderText {#text} at (1,1) size 28x18
     
    144144                  text run at (1,1) width 383: "text with value property changed, then turned into check box"
    145145              RenderTableCell {TD} at (389,218) size 243x20 [r=9 c=1 rs=1 cs=1]
    146                 RenderBlock {INPUT} at (3,4) size 13x12
     146                RenderBlock {INPUT} at (3,4) size 12x12
    147147              RenderTableCell {TD} at (634,218) size 62x20 [r=9 c=2 rs=1 cs=1]
    148148                RenderText {#text} at (1,1) size 28x18
     
    168168                  text run at (1,1) width 381: "text with value attribute changed, then turned into check box"
    169169              RenderTableCell {TD} at (389,267) size 243x20 [r=11 c=1 rs=1 cs=1]
    170                 RenderBlock {INPUT} at (3,4) size 13x12
     170                RenderBlock {INPUT} at (3,4) size 12x12
    171171              RenderTableCell {TD} at (634,267) size 62x20 [r=11 c=2 rs=1 cs=1]
    172172                RenderText {#text} at (1,1) size 28x18
  • trunk/LayoutTests/platform/mac/fast/inline/positionedLifetime-expected.txt

    r161884 r162742  
    44  RenderBlock {HTML} at (0,0) size 800x600
    55    RenderBody {BODY} at (8,8) size 784x584
    6       RenderBlock {INPUT} at (2,3) size 13x13
    7       RenderText {#text} at (17,0) size 5x18
    8         text run at (17,0) width 5: " "
    9       RenderBR {BR} at (21,14) size 1x0
     6      RenderBlock {INPUT} at (2,3) size 12x13
     7      RenderText {#text} at (16,0) size 4x18
     8        text run at (16,0) width 4: " "
     9      RenderBR {BR} at (20,14) size 0x0
    1010      RenderText {#text} at (0,0) size 0x0
    1111      RenderText {#text} at (0,0) size 0x0
  • trunk/LayoutTests/platform/mac/fast/parser/bad-xml-slash-expected.txt

    r161884 r162742  
    44  RenderBlock {HTML} at (0,0) size 800x600
    55    RenderBody {BODY} at (8,8) size 784x584
    6       RenderBlock {INPUT} at (2,4) size 13x12
    7       RenderText {#text} at (17,0) size 219x18
    8         text run at (17,0) width 219: "This checkbox should be checked."
     6      RenderBlock {INPUT} at (2,4) size 12x12
     7      RenderText {#text} at (16,0) size 218x18
     8        text run at (16,0) width 218: "This checkbox should be checked."
  • trunk/LayoutTests/platform/mac/fast/replaced/replaced-breaking-expected.txt

    r161884 r162742  
    4141        RenderListBox {SELECT} at (3,296) size 48x57 [bgcolor=#FFFFFF] [border: (1px inset #808080)]
    4242        RenderText {#text} at (0,0) size 0x0
    43         RenderBlock {INPUT} at (3,358) size 13x12
    44         RenderBlock {INPUT} at (3,376) size 13x12
     43        RenderBlock {INPUT} at (3,358) size 12x12
     44        RenderBlock {INPUT} at (3,376) size 12x12
    4545        RenderText {#text} at (0,0) size 0x0
    46         RenderBlock {INPUT} at (3,394) size 13x13
    47         RenderBlock {INPUT} at (3,413) size 13x13
     46        RenderBlock {INPUT} at (3,394) size 12x13
     47        RenderBlock {INPUT} at (3,413) size 12x13
    4848        RenderText {#text} at (0,0) size 0x0
    4949        RenderIFrame {IFRAME} at (1,429) size 27x27 [border: (1px solid #000000)]
  • trunk/LayoutTests/platform/mac/fast/replaced/width100percent-checkbox-expected.txt

    r161884 r162742  
    1010        RenderTableSection {TBODY} at (0,0) size 784x22
    1111          RenderTableRow {TR} at (0,1) size 784x20
    12             RenderTableCell {TD} at (1,1) size 8x20 [r=0 c=0 rs=1 cs=1]
    13               RenderBlock {INPUT} at (3,4) size 7x12
    14             RenderTableCell {TD} at (10,1) size 8x20 [r=0 c=1 rs=1 cs=1]
    15               RenderBlock {INPUT} at (3,4) size 7x12
    16             RenderTableCell {TD} at (19,1) size 8x20 [r=0 c=2 rs=1 cs=1]
    17               RenderBlock {INPUT} at (3,4) size 7x12
    18             RenderTableCell {TD} at (28,1) size 755x20 [r=0 c=3 rs=1 cs=1]
     12            RenderTableCell {TD} at (1,1) size 6x20 [r=0 c=0 rs=1 cs=1]
     13              RenderBlock {INPUT} at (3,4) size 4x12
     14            RenderTableCell {TD} at (8,1) size 6x20 [r=0 c=1 rs=1 cs=1]
     15              RenderBlock {INPUT} at (3,4) size 4x12
     16            RenderTableCell {TD} at (15,1) size 6x20 [r=0 c=2 rs=1 cs=1]
     17              RenderBlock {INPUT} at (3,4) size 4x12
     18            RenderTableCell {TD} at (22,1) size 761x20 [r=0 c=3 rs=1 cs=1]
    1919              RenderText {#text} at (1,1) size 4x18
    2020                text run at (1,1) width 4: " "
  • trunk/LayoutTests/platform/mac/fast/replaced/width100percent-radio-expected.txt

    r161884 r162742  
    1010        RenderTableSection {TBODY} at (0,0) size 784x23
    1111          RenderTableRow {TR} at (0,1) size 784x21
    12             RenderTableCell {TD} at (1,1) size 8x21 [r=0 c=0 rs=1 cs=1]
    13               RenderBlock {INPUT} at (3,4) size 7x13
    14             RenderTableCell {TD} at (10,1) size 8x21 [r=0 c=1 rs=1 cs=1]
    15               RenderBlock {INPUT} at (3,4) size 7x13
    16             RenderTableCell {TD} at (19,1) size 8x21 [r=0 c=2 rs=1 cs=1]
    17               RenderBlock {INPUT} at (3,4) size 7x13
    18             RenderTableCell {TD} at (28,1) size 755x20 [r=0 c=3 rs=1 cs=1]
     12            RenderTableCell {TD} at (1,1) size 6x21 [r=0 c=0 rs=1 cs=1]
     13              RenderBlock {INPUT} at (3,4) size 4x13
     14            RenderTableCell {TD} at (8,1) size 6x21 [r=0 c=1 rs=1 cs=1]
     15              RenderBlock {INPUT} at (3,4) size 4x13
     16            RenderTableCell {TD} at (15,1) size 6x21 [r=0 c=2 rs=1 cs=1]
     17              RenderBlock {INPUT} at (3,4) size 4x13
     18            RenderTableCell {TD} at (22,1) size 761x20 [r=0 c=3 rs=1 cs=1]
    1919              RenderText {#text} at (1,1) size 4x18
    2020                text run at (1,1) width 4: " "
  • trunk/LayoutTests/platform/mac/fast/text/textIteratorNilRenderer-expected.txt

    r161884 r162742  
    2222                  RenderText {#text} at (0,0) size 0x0
    2323                RenderTableCell {TD} at (538,2) size 160x18 [r=0 c=3 rs=2 cs=1]
    24                   RenderInline {LABEL} at (0,0) size 117x13
     24                  RenderInline {LABEL} at (0,0) size 115x13
    2525                    RenderText {#text} at (0,0) size 0x0
    26                     RenderBlock {INPUT} at (12,3) size 13x12
    27                     RenderText {#text} at (27,3) size 100x13
    28                       text run at (27,3) width 100: " Remember this location"
     26                    RenderBlock {INPUT} at (12,3) size 12x12
     27                    RenderText {#text} at (26,3) size 99x13
     28                      text run at (26,3) width 99: " Remember this location"
    2929                  RenderText {#text} at (0,0) size 0x0
    3030        RenderBlock (anonymous) at (0,39) size 784x18
  • trunk/LayoutTests/platform/mac/fast/text/whitespace/normal-after-nowrap-breaking-expected.txt

    r161884 r162742  
    66      RenderFieldSet {FIELDSET} at (2,0) size 780x371 [border: (2px groove #C0C0C0)]
    77        RenderBlock {DIV} at (14,7) size 752x352
    8           RenderInline {DIV} at (0,0) size 121x18
    9             RenderInline {DIV} at (0,0) size 121x18
     8          RenderInline {DIV} at (0,0) size 119x18
     9            RenderInline {DIV} at (0,0) size 119x18
    1010              RenderText {#text} at (0,0) size 0x0
    1111              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     
    1313              RenderText {#text} at (50,20) size 4x18
    1414                text run at (50,20) width 4: " "
    15               RenderBlock {INPUT} at (56,24) size 13x12
    16               RenderInline {LABEL} at (0,0) size 46x18
    17                 RenderText {#text} at (71,20) size 46x18
    18                   text run at (71,20) width 46: "Classic"
    19               RenderText {#text} at (116,20) size 5x18
    20                 text run at (116,20) width 5: " "
    21           RenderText {#text} at (0,0) size 0x0
    22           RenderInline {DIV} at (0,0) size 117x18
    23             RenderInline {DIV} at (0,0) size 117x18
    24               RenderText {#text} at (0,0) size 0x0
    25               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    26                 RenderImage {IMG} at (120,0) size 51x34
    27               RenderText {#text} at (170,20) size 5x18
    28                 text run at (170,20) width 5: " "
    29               RenderBlock {INPUT} at (177,24) size 13x12
    30               RenderInline {LABEL} at (0,0) size 41x18
    31                 RenderText {#text} at (192,20) size 41x18
    32                   text run at (192,20) width 41: "Africa"
    33               RenderText {#text} at (232,20) size 5x18
    34                 text run at (232,20) width 5: " "
    35           RenderText {#text} at (0,0) size 0x0
    36           RenderInline {DIV} at (0,0) size 202x18
    37             RenderInline {DIV} at (0,0) size 202x18
    38               RenderText {#text} at (0,0) size 0x0
    39               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    40                 RenderImage {IMG} at (236,0) size 51x34
    41               RenderText {#text} at (286,20) size 5x18
    42                 text run at (286,20) width 5: " "
    43               RenderBlock {INPUT} at (293,24) size 13x12
    44               RenderInline {LABEL} at (0,0) size 126x18
    45                 RenderText {#text} at (308,20) size 126x18
    46                   text run at (308,20) width 126: "Alexander's Empire"
    47               RenderText {#text} at (433,20) size 5x18
    48                 text run at (433,20) width 5: " "
    49           RenderText {#text} at (0,0) size 0x0
    50           RenderInline {DIV} at (0,0) size 176x18
    51             RenderInline {DIV} at (0,0) size 176x18
    52               RenderText {#text} at (0,0) size 0x0
    53               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    54                 RenderImage {IMG} at (437,0) size 51x34
    55               RenderText {#text} at (487,20) size 5x18
    56                 text run at (487,20) width 5: " "
    57               RenderBlock {INPUT} at (494,24) size 13x12
    58               RenderInline {LABEL} at (0,0) size 100x18
    59                 RenderText {#text} at (509,20) size 100x18
    60                   text run at (509,20) width 100: "Ancient Greece"
    61               RenderText {#text} at (608,20) size 5x18
    62                 text run at (608,20) width 5: " "
    63           RenderText {#text} at (0,0) size 0x0
    64           RenderInline {DIV} at (0,0) size 118x18
    65             RenderInline {DIV} at (0,0) size 118x18
    66               RenderText {#text} at (0,0) size 0x0
    67               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    68                 RenderImage {IMG} at (612,0) size 51x34
    69               RenderText {#text} at (662,20) size 5x18
    70                 text run at (662,20) width 5: " "
    71               RenderBlock {INPUT} at (669,24) size 13x12
    72               RenderInline {LABEL} at (0,0) size 46x18
    73                 RenderText {#text} at (684,20) size 46x18
    74                   text run at (684,20) width 46: "Classic"
    75               RenderText {#text} at (0,0) size 0x0
    76           RenderText {#text} at (0,0) size 0x0
    77           RenderInline {DIV} at (0,0) size 116x18
    78             RenderInline {DIV} at (0,0) size 116x18
     15              RenderBlock {INPUT} at (56,24) size 12x12
     16              RenderInline {LABEL} at (0,0) size 45x18
     17                RenderText {#text} at (70,20) size 45x18
     18                  text run at (70,20) width 45: "Classic"
     19              RenderText {#text} at (115,20) size 4x18
     20                text run at (115,20) width 4: " "
     21          RenderText {#text} at (0,0) size 0x0
     22          RenderInline {DIV} at (0,0) size 114x18
     23            RenderInline {DIV} at (0,0) size 114x18
     24              RenderText {#text} at (0,0) size 0x0
     25              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     26                RenderImage {IMG} at (119,0) size 50x34
     27              RenderText {#text} at (169,20) size 4x18
     28                text run at (169,20) width 4: " "
     29              RenderBlock {INPUT} at (175,24) size 12x12
     30              RenderInline {LABEL} at (0,0) size 40x18
     31                RenderText {#text} at (189,20) size 40x18
     32                  text run at (189,20) width 40: "Africa"
     33              RenderText {#text} at (229,20) size 4x18
     34                text run at (229,20) width 4: " "
     35          RenderText {#text} at (0,0) size 0x0
     36          RenderInline {DIV} at (0,0) size 199x18
     37            RenderInline {DIV} at (0,0) size 199x18
     38              RenderText {#text} at (0,0) size 0x0
     39              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     40                RenderImage {IMG} at (233,0) size 50x34
     41              RenderText {#text} at (283,20) size 4x18
     42                text run at (283,20) width 4: " "
     43              RenderBlock {INPUT} at (289,24) size 12x12
     44              RenderInline {LABEL} at (0,0) size 125x18
     45                RenderText {#text} at (303,20) size 125x18
     46                  text run at (303,20) width 125: "Alexander's Empire"
     47              RenderText {#text} at (428,20) size 4x18
     48                text run at (428,20) width 4: " "
     49          RenderText {#text} at (0,0) size 0x0
     50          RenderInline {DIV} at (0,0) size 173x18
     51            RenderInline {DIV} at (0,0) size 173x18
     52              RenderText {#text} at (0,0) size 0x0
     53              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     54                RenderImage {IMG} at (432,0) size 50x34
     55              RenderText {#text} at (482,20) size 4x18
     56                text run at (482,20) width 4: " "
     57              RenderBlock {INPUT} at (488,24) size 12x12
     58              RenderInline {LABEL} at (0,0) size 99x18
     59                RenderText {#text} at (502,20) size 99x18
     60                  text run at (502,20) width 99: "Ancient Greece"
     61              RenderText {#text} at (601,20) size 4x18
     62                text run at (601,20) width 4: " "
     63          RenderText {#text} at (0,0) size 0x0
     64          RenderInline {DIV} at (0,0) size 115x18
     65            RenderInline {DIV} at (0,0) size 115x18
     66              RenderText {#text} at (0,0) size 0x0
     67              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     68                RenderImage {IMG} at (605,0) size 50x34
     69              RenderText {#text} at (655,20) size 4x18
     70                text run at (655,20) width 4: " "
     71              RenderBlock {INPUT} at (661,24) size 12x12
     72              RenderInline {LABEL} at (0,0) size 45x18
     73                RenderText {#text} at (675,20) size 45x18
     74                  text run at (675,20) width 45: "Classic"
     75              RenderText {#text} at (0,0) size 0x0
     76          RenderText {#text} at (0,0) size 0x0
     77          RenderInline {DIV} at (0,0) size 114x18
     78            RenderInline {DIV} at (0,0) size 114x18
    7979              RenderText {#text} at (0,0) size 0x0
    8080              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     
    8282              RenderText {#text} at (50,59) size 4x18
    8383                text run at (50,59) width 4: " "
    84               RenderBlock {INPUT} at (56,63) size 13x12
    85               RenderInline {LABEL} at (0,0) size 41x18
    86                 RenderText {#text} at (71,59) size 41x18
    87                   text run at (71,59) width 41: "Africa"
    88               RenderText {#text} at (111,59) size 5x18
    89                 text run at (111,59) width 5: " "
    90           RenderText {#text} at (0,0) size 0x0
    91           RenderInline {DIV} at (0,0) size 202x18
    92             RenderInline {DIV} at (0,0) size 202x18
    93               RenderText {#text} at (0,0) size 0x0
    94               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    95                 RenderImage {IMG} at (115,39) size 51x34
    96               RenderText {#text} at (165,59) size 5x18
    97                 text run at (165,59) width 5: " "
    98               RenderBlock {INPUT} at (172,63) size 13x12
    99               RenderInline {LABEL} at (0,0) size 126x18
    100                 RenderText {#text} at (187,59) size 126x18
    101                   text run at (187,59) width 126: "Alexander's Empire"
    102               RenderText {#text} at (312,59) size 5x18
    103                 text run at (312,59) width 5: " "
    104           RenderText {#text} at (0,0) size 0x0
    105           RenderInline {DIV} at (0,0) size 176x18
    106             RenderInline {DIV} at (0,0) size 176x18
    107               RenderText {#text} at (0,0) size 0x0
    108               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    109                 RenderImage {IMG} at (316,39) size 51x34
    110               RenderText {#text} at (366,59) size 5x18
    111                 text run at (366,59) width 5: " "
    112               RenderBlock {INPUT} at (373,63) size 13x12
    113               RenderInline {LABEL} at (0,0) size 100x18
    114                 RenderText {#text} at (388,59) size 100x18
    115                   text run at (388,59) width 100: "Ancient Greece"
    116               RenderText {#text} at (487,59) size 5x18
    117                 text run at (487,59) width 5: " "
    118           RenderText {#text} at (0,0) size 0x0
    119           RenderInline {DIV} at (0,0) size 122x18
    120             RenderInline {DIV} at (0,0) size 122x18
    121               RenderText {#text} at (0,0) size 0x0
    122               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    123                 RenderImage {IMG} at (491,39) size 51x34
    124               RenderText {#text} at (541,59) size 5x18
    125                 text run at (541,59) width 5: " "
    126               RenderBlock {INPUT} at (548,63) size 13x12
    127               RenderInline {LABEL} at (0,0) size 46x18
    128                 RenderText {#text} at (563,59) size 46x18
    129                   text run at (563,59) width 46: "Classic"
    130               RenderText {#text} at (608,59) size 5x18
    131                 text run at (608,59) width 5: " "
    132           RenderText {#text} at (0,0) size 0x0
    133           RenderInline {DIV} at (0,0) size 113x18
    134             RenderInline {DIV} at (0,0) size 113x18
    135               RenderText {#text} at (0,0) size 0x0
    136               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    137                 RenderImage {IMG} at (612,39) size 51x34
    138               RenderText {#text} at (662,59) size 5x18
    139                 text run at (662,59) width 5: " "
    140               RenderBlock {INPUT} at (669,63) size 13x12
    141               RenderInline {LABEL} at (0,0) size 41x18
    142                 RenderText {#text} at (684,59) size 41x18
    143                   text run at (684,59) width 41: "Africa"
    144               RenderText {#text} at (0,0) size 0x0
    145           RenderText {#text} at (0,0) size 0x0
    146           RenderInline {DIV} at (0,0) size 201x18
    147             RenderInline {DIV} at (0,0) size 201x18
     84              RenderBlock {INPUT} at (56,63) size 12x12
     85              RenderInline {LABEL} at (0,0) size 40x18
     86                RenderText {#text} at (70,59) size 40x18
     87                  text run at (70,59) width 40: "Africa"
     88              RenderText {#text} at (110,59) size 4x18
     89                text run at (110,59) width 4: " "
     90          RenderText {#text} at (0,0) size 0x0
     91          RenderInline {DIV} at (0,0) size 199x18
     92            RenderInline {DIV} at (0,0) size 199x18
     93              RenderText {#text} at (0,0) size 0x0
     94              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     95                RenderImage {IMG} at (114,39) size 50x34
     96              RenderText {#text} at (164,59) size 4x18
     97                text run at (164,59) width 4: " "
     98              RenderBlock {INPUT} at (170,63) size 12x12
     99              RenderInline {LABEL} at (0,0) size 125x18
     100                RenderText {#text} at (184,59) size 125x18
     101                  text run at (184,59) width 125: "Alexander's Empire"
     102              RenderText {#text} at (309,59) size 4x18
     103                text run at (309,59) width 4: " "
     104          RenderText {#text} at (0,0) size 0x0
     105          RenderInline {DIV} at (0,0) size 173x18
     106            RenderInline {DIV} at (0,0) size 173x18
     107              RenderText {#text} at (0,0) size 0x0
     108              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     109                RenderImage {IMG} at (313,39) size 50x34
     110              RenderText {#text} at (363,59) size 4x18
     111                text run at (363,59) width 4: " "
     112              RenderBlock {INPUT} at (369,63) size 12x12
     113              RenderInline {LABEL} at (0,0) size 99x18
     114                RenderText {#text} at (383,59) size 99x18
     115                  text run at (383,59) width 99: "Ancient Greece"
     116              RenderText {#text} at (482,59) size 4x18
     117                text run at (482,59) width 4: " "
     118          RenderText {#text} at (0,0) size 0x0
     119          RenderInline {DIV} at (0,0) size 119x18
     120            RenderInline {DIV} at (0,0) size 119x18
     121              RenderText {#text} at (0,0) size 0x0
     122              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     123                RenderImage {IMG} at (486,39) size 50x34
     124              RenderText {#text} at (536,59) size 4x18
     125                text run at (536,59) width 4: " "
     126              RenderBlock {INPUT} at (542,63) size 12x12
     127              RenderInline {LABEL} at (0,0) size 45x18
     128                RenderText {#text} at (556,59) size 45x18
     129                  text run at (556,59) width 45: "Classic"
     130              RenderText {#text} at (601,59) size 4x18
     131                text run at (601,59) width 4: " "
     132          RenderText {#text} at (0,0) size 0x0
     133          RenderInline {DIV} at (0,0) size 110x18
     134            RenderInline {DIV} at (0,0) size 110x18
     135              RenderText {#text} at (0,0) size 0x0
     136              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     137                RenderImage {IMG} at (605,39) size 50x34
     138              RenderText {#text} at (655,59) size 4x18
     139                text run at (655,59) width 4: " "
     140              RenderBlock {INPUT} at (661,63) size 12x12
     141              RenderInline {LABEL} at (0,0) size 40x18
     142                RenderText {#text} at (675,59) size 40x18
     143                  text run at (675,59) width 40: "Africa"
     144              RenderText {#text} at (0,0) size 0x0
     145          RenderText {#text} at (0,0) size 0x0
     146          RenderInline {DIV} at (0,0) size 199x18
     147            RenderInline {DIV} at (0,0) size 199x18
    148148              RenderText {#text} at (0,0) size 0x0
    149149              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     
    151151              RenderText {#text} at (50,98) size 4x18
    152152                text run at (50,98) width 4: " "
    153               RenderBlock {INPUT} at (56,102) size 13x12
    154               RenderInline {LABEL} at (0,0) size 126x18
    155                 RenderText {#text} at (71,98) size 126x18
    156                   text run at (71,98) width 126: "Alexander's Empire"
    157               RenderText {#text} at (196,98) size 5x18
    158                 text run at (196,98) width 5: " "
    159           RenderText {#text} at (0,0) size 0x0
    160           RenderInline {DIV} at (0,0) size 176x18
    161             RenderInline {DIV} at (0,0) size 176x18
    162               RenderText {#text} at (0,0) size 0x0
    163               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    164                 RenderImage {IMG} at (200,78) size 51x34
    165               RenderText {#text} at (250,98) size 5x18
    166                 text run at (250,98) width 5: " "
    167               RenderBlock {INPUT} at (257,102) size 13x12
    168               RenderInline {LABEL} at (0,0) size 100x18
    169                 RenderText {#text} at (272,98) size 100x18
    170                   text run at (272,98) width 100: "Ancient Greece"
    171               RenderText {#text} at (371,98) size 5x18
    172                 text run at (371,98) width 5: " "
    173           RenderText {#text} at (0,0) size 0x0
    174           RenderInline {DIV} at (0,0) size 122x18
    175             RenderInline {DIV} at (0,0) size 122x18
    176               RenderText {#text} at (0,0) size 0x0
    177               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    178                 RenderImage {IMG} at (375,78) size 51x34
    179               RenderText {#text} at (425,98) size 5x18
    180                 text run at (425,98) width 5: " "
    181               RenderBlock {INPUT} at (432,102) size 13x12
    182               RenderInline {LABEL} at (0,0) size 46x18
    183                 RenderText {#text} at (447,98) size 46x18
    184                   text run at (447,98) width 46: "Classic"
    185               RenderText {#text} at (492,98) size 5x18
    186                 text run at (492,98) width 5: " "
    187           RenderText {#text} at (0,0) size 0x0
    188           RenderInline {DIV} at (0,0) size 113x18
    189             RenderInline {DIV} at (0,0) size 113x18
    190               RenderText {#text} at (0,0) size 0x0
    191               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    192                 RenderImage {IMG} at (496,78) size 51x34
    193               RenderText {#text} at (546,98) size 5x18
    194                 text run at (546,98) width 5: " "
    195               RenderBlock {INPUT} at (553,102) size 13x12
    196               RenderInline {LABEL} at (0,0) size 41x18
    197                 RenderText {#text} at (568,98) size 41x18
    198                   text run at (568,98) width 41: "Africa"
    199               RenderText {#text} at (0,0) size 0x0
    200           RenderText {#text} at (0,0) size 0x0
    201           RenderInline {DIV} at (0,0) size 201x18
    202             RenderInline {DIV} at (0,0) size 201x18
     153              RenderBlock {INPUT} at (56,102) size 12x12
     154              RenderInline {LABEL} at (0,0) size 125x18
     155                RenderText {#text} at (70,98) size 125x18
     156                  text run at (70,98) width 125: "Alexander's Empire"
     157              RenderText {#text} at (195,98) size 4x18
     158                text run at (195,98) width 4: " "
     159          RenderText {#text} at (0,0) size 0x0
     160          RenderInline {DIV} at (0,0) size 173x18
     161            RenderInline {DIV} at (0,0) size 173x18
     162              RenderText {#text} at (0,0) size 0x0
     163              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     164                RenderImage {IMG} at (199,78) size 50x34
     165              RenderText {#text} at (249,98) size 4x18
     166                text run at (249,98) width 4: " "
     167              RenderBlock {INPUT} at (255,102) size 12x12
     168              RenderInline {LABEL} at (0,0) size 99x18
     169                RenderText {#text} at (269,98) size 99x18
     170                  text run at (269,98) width 99: "Ancient Greece"
     171              RenderText {#text} at (368,98) size 4x18
     172                text run at (368,98) width 4: " "
     173          RenderText {#text} at (0,0) size 0x0
     174          RenderInline {DIV} at (0,0) size 119x18
     175            RenderInline {DIV} at (0,0) size 119x18
     176              RenderText {#text} at (0,0) size 0x0
     177              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     178                RenderImage {IMG} at (372,78) size 50x34
     179              RenderText {#text} at (422,98) size 4x18
     180                text run at (422,98) width 4: " "
     181              RenderBlock {INPUT} at (428,102) size 12x12
     182              RenderInline {LABEL} at (0,0) size 45x18
     183                RenderText {#text} at (442,98) size 45x18
     184                  text run at (442,98) width 45: "Classic"
     185              RenderText {#text} at (487,98) size 4x18
     186                text run at (487,98) width 4: " "
     187          RenderText {#text} at (0,0) size 0x0
     188          RenderInline {DIV} at (0,0) size 110x18
     189            RenderInline {DIV} at (0,0) size 110x18
     190              RenderText {#text} at (0,0) size 0x0
     191              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     192                RenderImage {IMG} at (491,78) size 50x34
     193              RenderText {#text} at (541,98) size 4x18
     194                text run at (541,98) width 4: " "
     195              RenderBlock {INPUT} at (547,102) size 12x12
     196              RenderInline {LABEL} at (0,0) size 40x18
     197                RenderText {#text} at (561,98) size 40x18
     198                  text run at (561,98) width 40: "Africa"
     199              RenderText {#text} at (0,0) size 0x0
     200          RenderText {#text} at (0,0) size 0x0
     201          RenderInline {DIV} at (0,0) size 199x18
     202            RenderInline {DIV} at (0,0) size 199x18
    203203              RenderText {#text} at (0,0) size 0x0
    204204              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     
    206206              RenderText {#text} at (50,137) size 4x18
    207207                text run at (50,137) width 4: " "
    208               RenderBlock {INPUT} at (56,141) size 13x12
    209               RenderInline {LABEL} at (0,0) size 126x18
    210                 RenderText {#text} at (71,137) size 126x18
    211                   text run at (71,137) width 126: "Alexander's Empire"
    212               RenderText {#text} at (196,137) size 5x18
    213                 text run at (196,137) width 5: " "
    214           RenderText {#text} at (0,0) size 0x0
    215           RenderInline {DIV} at (0,0) size 176x18
    216             RenderInline {DIV} at (0,0) size 176x18
    217               RenderText {#text} at (0,0) size 0x0
    218               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    219                 RenderImage {IMG} at (200,117) size 51x34
    220               RenderText {#text} at (250,137) size 5x18
    221                 text run at (250,137) width 5: " "
    222               RenderBlock {INPUT} at (257,141) size 13x12
    223               RenderInline {LABEL} at (0,0) size 100x18
    224                 RenderText {#text} at (272,137) size 100x18
    225                   text run at (272,137) width 100: "Ancient Greece"
    226               RenderText {#text} at (371,137) size 5x18
    227                 text run at (371,137) width 5: " "
    228           RenderText {#text} at (0,0) size 0x0
    229           RenderInline {DIV} at (0,0) size 122x18
    230             RenderInline {DIV} at (0,0) size 122x18
    231               RenderText {#text} at (0,0) size 0x0
    232               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    233                 RenderImage {IMG} at (375,117) size 51x34
    234               RenderText {#text} at (425,137) size 5x18
    235                 text run at (425,137) width 5: " "
    236               RenderBlock {INPUT} at (432,141) size 13x12
    237               RenderInline {LABEL} at (0,0) size 46x18
    238                 RenderText {#text} at (447,137) size 46x18
    239                   text run at (447,137) width 46: "Classic"
    240               RenderText {#text} at (492,137) size 5x18
    241                 text run at (492,137) width 5: " "
    242           RenderText {#text} at (0,0) size 0x0
    243           RenderInline {DIV} at (0,0) size 113x18
    244             RenderInline {DIV} at (0,0) size 113x18
    245               RenderText {#text} at (0,0) size 0x0
    246               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    247                 RenderImage {IMG} at (496,117) size 51x34
    248               RenderText {#text} at (546,137) size 5x18
    249                 text run at (546,137) width 5: " "
    250               RenderBlock {INPUT} at (553,141) size 13x12
    251               RenderInline {LABEL} at (0,0) size 41x18
    252                 RenderText {#text} at (568,137) size 41x18
    253                   text run at (568,137) width 41: "Africa"
    254               RenderText {#text} at (0,0) size 0x0
    255           RenderText {#text} at (0,0) size 0x0
    256           RenderInline {DIV} at (0,0) size 201x18
    257             RenderInline {DIV} at (0,0) size 201x18
     208              RenderBlock {INPUT} at (56,141) size 12x12
     209              RenderInline {LABEL} at (0,0) size 125x18
     210                RenderText {#text} at (70,137) size 125x18
     211                  text run at (70,137) width 125: "Alexander's Empire"
     212              RenderText {#text} at (195,137) size 4x18
     213                text run at (195,137) width 4: " "
     214          RenderText {#text} at (0,0) size 0x0
     215          RenderInline {DIV} at (0,0) size 173x18
     216            RenderInline {DIV} at (0,0) size 173x18
     217              RenderText {#text} at (0,0) size 0x0
     218              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     219                RenderImage {IMG} at (199,117) size 50x34
     220              RenderText {#text} at (249,137) size 4x18
     221                text run at (249,137) width 4: " "
     222              RenderBlock {INPUT} at (255,141) size 12x12
     223              RenderInline {LABEL} at (0,0) size 99x18
     224                RenderText {#text} at (269,137) size 99x18
     225                  text run at (269,137) width 99: "Ancient Greece"
     226              RenderText {#text} at (368,137) size 4x18
     227                text run at (368,137) width 4: " "
     228          RenderText {#text} at (0,0) size 0x0
     229          RenderInline {DIV} at (0,0) size 119x18
     230            RenderInline {DIV} at (0,0) size 119x18
     231              RenderText {#text} at (0,0) size 0x0
     232              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     233                RenderImage {IMG} at (372,117) size 50x34
     234              RenderText {#text} at (422,137) size 4x18
     235                text run at (422,137) width 4: " "
     236              RenderBlock {INPUT} at (428,141) size 12x12
     237              RenderInline {LABEL} at (0,0) size 45x18
     238                RenderText {#text} at (442,137) size 45x18
     239                  text run at (442,137) width 45: "Classic"
     240              RenderText {#text} at (487,137) size 4x18
     241                text run at (487,137) width 4: " "
     242          RenderText {#text} at (0,0) size 0x0
     243          RenderInline {DIV} at (0,0) size 110x18
     244            RenderInline {DIV} at (0,0) size 110x18
     245              RenderText {#text} at (0,0) size 0x0
     246              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     247                RenderImage {IMG} at (491,117) size 50x34
     248              RenderText {#text} at (541,137) size 4x18
     249                text run at (541,137) width 4: " "
     250              RenderBlock {INPUT} at (547,141) size 12x12
     251              RenderInline {LABEL} at (0,0) size 40x18
     252                RenderText {#text} at (561,137) size 40x18
     253                  text run at (561,137) width 40: "Africa"
     254              RenderText {#text} at (0,0) size 0x0
     255          RenderText {#text} at (0,0) size 0x0
     256          RenderInline {DIV} at (0,0) size 199x18
     257            RenderInline {DIV} at (0,0) size 199x18
    258258              RenderText {#text} at (0,0) size 0x0
    259259              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     
    261261              RenderText {#text} at (50,176) size 4x18
    262262                text run at (50,176) width 4: " "
    263               RenderBlock {INPUT} at (56,180) size 13x12
    264               RenderInline {LABEL} at (0,0) size 126x18
    265                 RenderText {#text} at (71,176) size 126x18
    266                   text run at (71,176) width 126: "Alexander's Empire"
    267               RenderText {#text} at (196,176) size 5x18
    268                 text run at (196,176) width 5: " "
    269           RenderText {#text} at (0,0) size 0x0
    270           RenderInline {DIV} at (0,0) size 176x18
    271             RenderInline {DIV} at (0,0) size 176x18
    272               RenderText {#text} at (0,0) size 0x0
    273               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    274                 RenderImage {IMG} at (200,156) size 51x34
    275               RenderText {#text} at (250,176) size 5x18
    276                 text run at (250,176) width 5: " "
    277               RenderBlock {INPUT} at (257,180) size 13x12
    278               RenderInline {LABEL} at (0,0) size 100x18
    279                 RenderText {#text} at (272,176) size 100x18
    280                   text run at (272,176) width 100: "Ancient Greece"
    281               RenderText {#text} at (371,176) size 5x18
    282                 text run at (371,176) width 5: " "
    283           RenderText {#text} at (0,0) size 0x0
    284           RenderInline {DIV} at (0,0) size 122x18
    285             RenderInline {DIV} at (0,0) size 122x18
    286               RenderText {#text} at (0,0) size 0x0
    287               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    288                 RenderImage {IMG} at (375,156) size 51x34
    289               RenderText {#text} at (425,176) size 5x18
    290                 text run at (425,176) width 5: " "
    291               RenderBlock {INPUT} at (432,180) size 13x12
    292               RenderInline {LABEL} at (0,0) size 46x18
    293                 RenderText {#text} at (447,176) size 46x18
    294                   text run at (447,176) width 46: "Classic"
    295               RenderText {#text} at (492,176) size 5x18
    296                 text run at (492,176) width 5: " "
    297           RenderText {#text} at (0,0) size 0x0
    298           RenderInline {DIV} at (0,0) size 113x18
    299             RenderInline {DIV} at (0,0) size 113x18
    300               RenderText {#text} at (0,0) size 0x0
    301               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    302                 RenderImage {IMG} at (496,156) size 51x34
    303               RenderText {#text} at (546,176) size 5x18
    304                 text run at (546,176) width 5: " "
    305               RenderBlock {INPUT} at (553,180) size 13x12
    306               RenderInline {LABEL} at (0,0) size 41x18
    307                 RenderText {#text} at (568,176) size 41x18
    308                   text run at (568,176) width 41: "Africa"
    309               RenderText {#text} at (0,0) size 0x0
    310           RenderText {#text} at (0,0) size 0x0
    311           RenderInline {DIV} at (0,0) size 201x18
    312             RenderInline {DIV} at (0,0) size 201x18
     263              RenderBlock {INPUT} at (56,180) size 12x12
     264              RenderInline {LABEL} at (0,0) size 125x18
     265                RenderText {#text} at (70,176) size 125x18
     266                  text run at (70,176) width 125: "Alexander's Empire"
     267              RenderText {#text} at (195,176) size 4x18
     268                text run at (195,176) width 4: " "
     269          RenderText {#text} at (0,0) size 0x0
     270          RenderInline {DIV} at (0,0) size 173x18
     271            RenderInline {DIV} at (0,0) size 173x18
     272              RenderText {#text} at (0,0) size 0x0
     273              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     274                RenderImage {IMG} at (199,156) size 50x34
     275              RenderText {#text} at (249,176) size 4x18
     276                text run at (249,176) width 4: " "
     277              RenderBlock {INPUT} at (255,180) size 12x12
     278              RenderInline {LABEL} at (0,0) size 99x18
     279                RenderText {#text} at (269,176) size 99x18
     280                  text run at (269,176) width 99: "Ancient Greece"
     281              RenderText {#text} at (368,176) size 4x18
     282                text run at (368,176) width 4: " "
     283          RenderText {#text} at (0,0) size 0x0
     284          RenderInline {DIV} at (0,0) size 119x18
     285            RenderInline {DIV} at (0,0) size 119x18
     286              RenderText {#text} at (0,0) size 0x0
     287              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     288                RenderImage {IMG} at (372,156) size 50x34
     289              RenderText {#text} at (422,176) size 4x18
     290                text run at (422,176) width 4: " "
     291              RenderBlock {INPUT} at (428,180) size 12x12
     292              RenderInline {LABEL} at (0,0) size 45x18
     293                RenderText {#text} at (442,176) size 45x18
     294                  text run at (442,176) width 45: "Classic"
     295              RenderText {#text} at (487,176) size 4x18
     296                text run at (487,176) width 4: " "
     297          RenderText {#text} at (0,0) size 0x0
     298          RenderInline {DIV} at (0,0) size 110x18
     299            RenderInline {DIV} at (0,0) size 110x18
     300              RenderText {#text} at (0,0) size 0x0
     301              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     302                RenderImage {IMG} at (491,156) size 50x34
     303              RenderText {#text} at (541,176) size 4x18
     304                text run at (541,176) width 4: " "
     305              RenderBlock {INPUT} at (547,180) size 12x12
     306              RenderInline {LABEL} at (0,0) size 40x18
     307                RenderText {#text} at (561,176) size 40x18
     308                  text run at (561,176) width 40: "Africa"
     309              RenderText {#text} at (0,0) size 0x0
     310          RenderText {#text} at (0,0) size 0x0
     311          RenderInline {DIV} at (0,0) size 199x18
     312            RenderInline {DIV} at (0,0) size 199x18
    313313              RenderText {#text} at (0,0) size 0x0
    314314              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     
    316316              RenderText {#text} at (50,215) size 4x18
    317317                text run at (50,215) width 4: " "
    318               RenderBlock {INPUT} at (56,219) size 13x12
    319               RenderInline {LABEL} at (0,0) size 126x18
    320                 RenderText {#text} at (71,215) size 126x18
    321                   text run at (71,215) width 126: "Alexander's Empire"
    322               RenderText {#text} at (196,215) size 5x18
    323                 text run at (196,215) width 5: " "
    324           RenderText {#text} at (0,0) size 0x0
    325           RenderInline {DIV} at (0,0) size 176x18
    326             RenderInline {DIV} at (0,0) size 176x18
    327               RenderText {#text} at (0,0) size 0x0
    328               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    329                 RenderImage {IMG} at (200,195) size 51x34
    330               RenderText {#text} at (250,215) size 5x18
    331                 text run at (250,215) width 5: " "
    332               RenderBlock {INPUT} at (257,219) size 13x12
    333               RenderInline {LABEL} at (0,0) size 100x18
    334                 RenderText {#text} at (272,215) size 100x18
    335                   text run at (272,215) width 100: "Ancient Greece"
    336               RenderText {#text} at (371,215) size 5x18
    337                 text run at (371,215) width 5: " "
    338           RenderText {#text} at (0,0) size 0x0
    339           RenderInline {DIV} at (0,0) size 122x18
    340             RenderInline {DIV} at (0,0) size 122x18
    341               RenderText {#text} at (0,0) size 0x0
    342               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    343                 RenderImage {IMG} at (375,195) size 51x34
    344               RenderText {#text} at (425,215) size 5x18
    345                 text run at (425,215) width 5: " "
    346               RenderBlock {INPUT} at (432,219) size 13x12
    347               RenderInline {LABEL} at (0,0) size 46x18
    348                 RenderText {#text} at (447,215) size 46x18
    349                   text run at (447,215) width 46: "Classic"
    350               RenderText {#text} at (492,215) size 5x18
    351                 text run at (492,215) width 5: " "
    352           RenderText {#text} at (0,0) size 0x0
    353           RenderInline {DIV} at (0,0) size 113x18
    354             RenderInline {DIV} at (0,0) size 113x18
    355               RenderText {#text} at (0,0) size 0x0
    356               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    357                 RenderImage {IMG} at (496,195) size 51x34
    358               RenderText {#text} at (546,215) size 5x18
    359                 text run at (546,215) width 5: " "
    360               RenderBlock {INPUT} at (553,219) size 13x12
    361               RenderInline {LABEL} at (0,0) size 41x18
    362                 RenderText {#text} at (568,215) size 41x18
    363                   text run at (568,215) width 41: "Africa"
    364               RenderText {#text} at (0,0) size 0x0
    365           RenderText {#text} at (0,0) size 0x0
    366           RenderInline {DIV} at (0,0) size 201x18
    367             RenderInline {DIV} at (0,0) size 201x18
     318              RenderBlock {INPUT} at (56,219) size 12x12
     319              RenderInline {LABEL} at (0,0) size 125x18
     320                RenderText {#text} at (70,215) size 125x18
     321                  text run at (70,215) width 125: "Alexander's Empire"
     322              RenderText {#text} at (195,215) size 4x18
     323                text run at (195,215) width 4: " "
     324          RenderText {#text} at (0,0) size 0x0
     325          RenderInline {DIV} at (0,0) size 173x18
     326            RenderInline {DIV} at (0,0) size 173x18
     327              RenderText {#text} at (0,0) size 0x0
     328              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     329                RenderImage {IMG} at (199,195) size 50x34
     330              RenderText {#text} at (249,215) size 4x18
     331                text run at (249,215) width 4: " "
     332              RenderBlock {INPUT} at (255,219) size 12x12
     333              RenderInline {LABEL} at (0,0) size 99x18
     334                RenderText {#text} at (269,215) size 99x18
     335                  text run at (269,215) width 99: "Ancient Greece"
     336              RenderText {#text} at (368,215) size 4x18
     337                text run at (368,215) width 4: " "
     338          RenderText {#text} at (0,0) size 0x0
     339          RenderInline {DIV} at (0,0) size 119x18
     340            RenderInline {DIV} at (0,0) size 119x18
     341              RenderText {#text} at (0,0) size 0x0
     342              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     343                RenderImage {IMG} at (372,195) size 50x34
     344              RenderText {#text} at (422,215) size 4x18
     345                text run at (422,215) width 4: " "
     346              RenderBlock {INPUT} at (428,219) size 12x12
     347              RenderInline {LABEL} at (0,0) size 45x18
     348                RenderText {#text} at (442,215) size 45x18
     349                  text run at (442,215) width 45: "Classic"
     350              RenderText {#text} at (487,215) size 4x18
     351                text run at (487,215) width 4: " "
     352          RenderText {#text} at (0,0) size 0x0
     353          RenderInline {DIV} at (0,0) size 110x18
     354            RenderInline {DIV} at (0,0) size 110x18
     355              RenderText {#text} at (0,0) size 0x0
     356              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     357                RenderImage {IMG} at (491,195) size 50x34
     358              RenderText {#text} at (541,215) size 4x18
     359                text run at (541,215) width 4: " "
     360              RenderBlock {INPUT} at (547,219) size 12x12
     361              RenderInline {LABEL} at (0,0) size 40x18
     362                RenderText {#text} at (561,215) size 40x18
     363                  text run at (561,215) width 40: "Africa"
     364              RenderText {#text} at (0,0) size 0x0
     365          RenderText {#text} at (0,0) size 0x0
     366          RenderInline {DIV} at (0,0) size 199x18
     367            RenderInline {DIV} at (0,0) size 199x18
    368368              RenderText {#text} at (0,0) size 0x0
    369369              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     
    371371              RenderText {#text} at (50,254) size 4x18
    372372                text run at (50,254) width 4: " "
    373               RenderBlock {INPUT} at (56,258) size 13x12
    374               RenderInline {LABEL} at (0,0) size 126x18
    375                 RenderText {#text} at (71,254) size 126x18
    376                   text run at (71,254) width 126: "Alexander's Empire"
    377               RenderText {#text} at (196,254) size 5x18
    378                 text run at (196,254) width 5: " "
    379           RenderText {#text} at (0,0) size 0x0
    380           RenderInline {DIV} at (0,0) size 176x18
    381             RenderInline {DIV} at (0,0) size 176x18
    382               RenderText {#text} at (0,0) size 0x0
    383               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    384                 RenderImage {IMG} at (200,234) size 51x34
    385               RenderText {#text} at (250,254) size 5x18
    386                 text run at (250,254) width 5: " "
    387               RenderBlock {INPUT} at (257,258) size 13x12
    388               RenderInline {LABEL} at (0,0) size 100x18
    389                 RenderText {#text} at (272,254) size 100x18
    390                   text run at (272,254) width 100: "Ancient Greece"
    391               RenderText {#text} at (371,254) size 5x18
    392                 text run at (371,254) width 5: " "
    393           RenderText {#text} at (0,0) size 0x0
    394           RenderInline {DIV} at (0,0) size 122x18
    395             RenderInline {DIV} at (0,0) size 122x18
    396               RenderText {#text} at (0,0) size 0x0
    397               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    398                 RenderImage {IMG} at (375,234) size 51x34
    399               RenderText {#text} at (425,254) size 5x18
    400                 text run at (425,254) width 5: " "
    401               RenderBlock {INPUT} at (432,258) size 13x12
    402               RenderInline {LABEL} at (0,0) size 46x18
    403                 RenderText {#text} at (447,254) size 46x18
    404                   text run at (447,254) width 46: "Classic"
    405               RenderText {#text} at (492,254) size 5x18
    406                 text run at (492,254) width 5: " "
    407           RenderText {#text} at (0,0) size 0x0
    408           RenderInline {DIV} at (0,0) size 113x18
    409             RenderInline {DIV} at (0,0) size 113x18
    410               RenderText {#text} at (0,0) size 0x0
    411               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    412                 RenderImage {IMG} at (496,234) size 51x34
    413               RenderText {#text} at (546,254) size 5x18
    414                 text run at (546,254) width 5: " "
    415               RenderBlock {INPUT} at (553,258) size 13x12
    416               RenderInline {LABEL} at (0,0) size 41x18
    417                 RenderText {#text} at (568,254) size 41x18
    418                   text run at (568,254) width 41: "Africa"
    419               RenderText {#text} at (0,0) size 0x0
    420           RenderText {#text} at (0,0) size 0x0
    421           RenderInline {DIV} at (0,0) size 201x18
    422             RenderInline {DIV} at (0,0) size 201x18
     373              RenderBlock {INPUT} at (56,258) size 12x12
     374              RenderInline {LABEL} at (0,0) size 125x18
     375                RenderText {#text} at (70,254) size 125x18
     376                  text run at (70,254) width 125: "Alexander's Empire"
     377              RenderText {#text} at (195,254) size 4x18
     378                text run at (195,254) width 4: " "
     379          RenderText {#text} at (0,0) size 0x0
     380          RenderInline {DIV} at (0,0) size 173x18
     381            RenderInline {DIV} at (0,0) size 173x18
     382              RenderText {#text} at (0,0) size 0x0
     383              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     384                RenderImage {IMG} at (199,234) size 50x34
     385              RenderText {#text} at (249,254) size 4x18
     386                text run at (249,254) width 4: " "
     387              RenderBlock {INPUT} at (255,258) size 12x12
     388              RenderInline {LABEL} at (0,0) size 99x18
     389                RenderText {#text} at (269,254) size 99x18
     390                  text run at (269,254) width 99: "Ancient Greece"
     391              RenderText {#text} at (368,254) size 4x18
     392                text run at (368,254) width 4: " "
     393          RenderText {#text} at (0,0) size 0x0
     394          RenderInline {DIV} at (0,0) size 119x18
     395            RenderInline {DIV} at (0,0) size 119x18
     396              RenderText {#text} at (0,0) size 0x0
     397              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     398                RenderImage {IMG} at (372,234) size 50x34
     399              RenderText {#text} at (422,254) size 4x18
     400                text run at (422,254) width 4: " "
     401              RenderBlock {INPUT} at (428,258) size 12x12
     402              RenderInline {LABEL} at (0,0) size 45x18
     403                RenderText {#text} at (442,254) size 45x18
     404                  text run at (442,254) width 45: "Classic"
     405              RenderText {#text} at (487,254) size 4x18
     406                text run at (487,254) width 4: " "
     407          RenderText {#text} at (0,0) size 0x0
     408          RenderInline {DIV} at (0,0) size 110x18
     409            RenderInline {DIV} at (0,0) size 110x18
     410              RenderText {#text} at (0,0) size 0x0
     411              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     412                RenderImage {IMG} at (491,234) size 50x34
     413              RenderText {#text} at (541,254) size 4x18
     414                text run at (541,254) width 4: " "
     415              RenderBlock {INPUT} at (547,258) size 12x12
     416              RenderInline {LABEL} at (0,0) size 40x18
     417                RenderText {#text} at (561,254) size 40x18
     418                  text run at (561,254) width 40: "Africa"
     419              RenderText {#text} at (0,0) size 0x0
     420          RenderText {#text} at (0,0) size 0x0
     421          RenderInline {DIV} at (0,0) size 199x18
     422            RenderInline {DIV} at (0,0) size 199x18
    423423              RenderText {#text} at (0,0) size 0x0
    424424              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     
    426426              RenderText {#text} at (50,293) size 4x18
    427427                text run at (50,293) width 4: " "
    428               RenderBlock {INPUT} at (56,297) size 13x12
    429               RenderInline {LABEL} at (0,0) size 126x18
    430                 RenderText {#text} at (71,293) size 126x18
    431                   text run at (71,293) width 126: "Alexander's Empire"
    432               RenderText {#text} at (196,293) size 5x18
    433                 text run at (196,293) width 5: " "
    434           RenderText {#text} at (0,0) size 0x0
    435           RenderInline {DIV} at (0,0) size 176x18
    436             RenderInline {DIV} at (0,0) size 176x18
    437               RenderText {#text} at (0,0) size 0x0
    438               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    439                 RenderImage {IMG} at (200,273) size 51x34
    440               RenderText {#text} at (250,293) size 5x18
    441                 text run at (250,293) width 5: " "
    442               RenderBlock {INPUT} at (257,297) size 13x12
    443               RenderInline {LABEL} at (0,0) size 100x18
    444                 RenderText {#text} at (272,293) size 100x18
    445                   text run at (272,293) width 100: "Ancient Greece"
    446               RenderText {#text} at (371,293) size 5x18
    447                 text run at (371,293) width 5: " "
    448           RenderText {#text} at (0,0) size 0x0
    449           RenderInline {DIV} at (0,0) size 122x18
    450             RenderInline {DIV} at (0,0) size 122x18
    451               RenderText {#text} at (0,0) size 0x0
    452               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    453                 RenderImage {IMG} at (375,273) size 51x34
    454               RenderText {#text} at (425,293) size 5x18
    455                 text run at (425,293) width 5: " "
    456               RenderBlock {INPUT} at (432,297) size 13x12
    457               RenderInline {LABEL} at (0,0) size 46x18
    458                 RenderText {#text} at (447,293) size 46x18
    459                   text run at (447,293) width 46: "Classic"
    460               RenderText {#text} at (492,293) size 5x18
    461                 text run at (492,293) width 5: " "
    462           RenderText {#text} at (0,0) size 0x0
    463           RenderInline {DIV} at (0,0) size 113x18
    464             RenderInline {DIV} at (0,0) size 113x18
    465               RenderText {#text} at (0,0) size 0x0
    466               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    467                 RenderImage {IMG} at (496,273) size 51x34
    468               RenderText {#text} at (546,293) size 5x18
    469                 text run at (546,293) width 5: " "
    470               RenderBlock {INPUT} at (553,297) size 13x12
    471               RenderInline {LABEL} at (0,0) size 41x18
    472                 RenderText {#text} at (568,293) size 41x18
    473                   text run at (568,293) width 41: "Africa"
    474               RenderText {#text} at (0,0) size 0x0
    475           RenderText {#text} at (0,0) size 0x0
    476           RenderInline {DIV} at (0,0) size 201x18
    477             RenderInline {DIV} at (0,0) size 201x18
     428              RenderBlock {INPUT} at (56,297) size 12x12
     429              RenderInline {LABEL} at (0,0) size 125x18
     430                RenderText {#text} at (70,293) size 125x18
     431                  text run at (70,293) width 125: "Alexander's Empire"
     432              RenderText {#text} at (195,293) size 4x18
     433                text run at (195,293) width 4: " "
     434          RenderText {#text} at (0,0) size 0x0
     435          RenderInline {DIV} at (0,0) size 173x18
     436            RenderInline {DIV} at (0,0) size 173x18
     437              RenderText {#text} at (0,0) size 0x0
     438              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     439                RenderImage {IMG} at (199,273) size 50x34
     440              RenderText {#text} at (249,293) size 4x18
     441                text run at (249,293) width 4: " "
     442              RenderBlock {INPUT} at (255,297) size 12x12
     443              RenderInline {LABEL} at (0,0) size 99x18
     444                RenderText {#text} at (269,293) size 99x18
     445                  text run at (269,293) width 99: "Ancient Greece"
     446              RenderText {#text} at (368,293) size 4x18
     447                text run at (368,293) width 4: " "
     448          RenderText {#text} at (0,0) size 0x0
     449          RenderInline {DIV} at (0,0) size 119x18
     450            RenderInline {DIV} at (0,0) size 119x18
     451              RenderText {#text} at (0,0) size 0x0
     452              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     453                RenderImage {IMG} at (372,273) size 50x34
     454              RenderText {#text} at (422,293) size 4x18
     455                text run at (422,293) width 4: " "
     456              RenderBlock {INPUT} at (428,297) size 12x12
     457              RenderInline {LABEL} at (0,0) size 45x18
     458                RenderText {#text} at (442,293) size 45x18
     459                  text run at (442,293) width 45: "Classic"
     460              RenderText {#text} at (487,293) size 4x18
     461                text run at (487,293) width 4: " "
     462          RenderText {#text} at (0,0) size 0x0
     463          RenderInline {DIV} at (0,0) size 110x18
     464            RenderInline {DIV} at (0,0) size 110x18
     465              RenderText {#text} at (0,0) size 0x0
     466              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     467                RenderImage {IMG} at (491,273) size 50x34
     468              RenderText {#text} at (541,293) size 4x18
     469                text run at (541,293) width 4: " "
     470              RenderBlock {INPUT} at (547,297) size 12x12
     471              RenderInline {LABEL} at (0,0) size 40x18
     472                RenderText {#text} at (561,293) size 40x18
     473                  text run at (561,293) width 40: "Africa"
     474              RenderText {#text} at (0,0) size 0x0
     475          RenderText {#text} at (0,0) size 0x0
     476          RenderInline {DIV} at (0,0) size 199x18
     477            RenderInline {DIV} at (0,0) size 199x18
    478478              RenderText {#text} at (0,0) size 0x0
    479479              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     
    481481              RenderText {#text} at (50,332) size 4x18
    482482                text run at (50,332) width 4: " "
    483               RenderBlock {INPUT} at (56,336) size 13x12
    484               RenderInline {LABEL} at (0,0) size 126x18
    485                 RenderText {#text} at (71,332) size 126x18
    486                   text run at (71,332) width 126: "Alexander's Empire"
    487               RenderText {#text} at (196,332) size 5x18
    488                 text run at (196,332) width 5: " "
    489           RenderText {#text} at (0,0) size 0x0
    490           RenderInline {DIV} at (0,0) size 172x18
    491             RenderInline {DIV} at (0,0) size 172x18
    492               RenderText {#text} at (0,0) size 0x0
    493               RenderInline {A} at (0,0) size 51x18 [color=#0000EE]
    494                 RenderImage {IMG} at (200,312) size 51x34
    495               RenderText {#text} at (250,332) size 5x18
    496                 text run at (250,332) width 5: " "
    497               RenderBlock {INPUT} at (257,336) size 13x12
    498               RenderInline {LABEL} at (0,0) size 100x18
    499                 RenderText {#text} at (272,332) size 100x18
    500                   text run at (272,332) width 100: "Ancient Greece"
    501               RenderText {#text} at (0,0) size 0x0
    502           RenderText {#text} at (0,0) size 0x0
     483              RenderBlock {INPUT} at (56,336) size 12x12
     484              RenderInline {LABEL} at (0,0) size 125x18
     485                RenderText {#text} at (70,332) size 125x18
     486                  text run at (70,332) width 125: "Alexander's Empire"
     487              RenderText {#text} at (195,332) size 4x18
     488                text run at (195,332) width 4: " "
     489          RenderText {#text} at (0,0) size 0x0
     490          RenderInline {DIV} at (0,0) size 169x18
     491            RenderInline {DIV} at (0,0) size 169x18
     492              RenderText {#text} at (0,0) size 0x0
     493              RenderInline {A} at (0,0) size 50x18 [color=#0000EE]
     494                RenderImage {IMG} at (199,312) size 50x34
     495              RenderText {#text} at (249,332) size 4x18
     496                text run at (249,332) width 4: " "
     497              RenderBlock {INPUT} at (255,336) size 12x12
     498              RenderInline {LABEL} at (0,0) size 99x18
     499                RenderText {#text} at (269,332) size 99x18
     500                  text run at (269,332) width 99: "Ancient Greece"
     501              RenderText {#text} at (0,0) size 0x0
     502          RenderText {#text} at (0,0) size 0x0
  • trunk/LayoutTests/platform/mac/http/tests/navigation/javascriptlink-frames-expected.txt

    r161884 r162742  
    4141                RenderTextControl {INPUT} at (336,96) size 146x19 [bgcolor=#FFFFFF] [border: (2px inset #000000)]
    4242                RenderBR {BR} at (483,110) size 1x0
    43                 RenderBlock {INPUT} at (2,136) size 13x13
    44                 RenderText {#text} at (17,118) size 74x37
    45                   text run at (17,118) width 74: " Male"
    46                 RenderBR {BR} at (90,147) size 1x0
    47                 RenderBlock {INPUT} at (2,173) size 13x13
    48                 RenderText {#text} at (17,155) size 103x37
    49                   text run at (17,155) width 103: " Female"
    50                 RenderBR {BR} at (119,184) size 1x0
    51                 RenderBlock {INPUT} at (2,211) size 13x12
    52                 RenderText {#text} at (17,192) size 131x37
    53                   text run at (17,192) width 131: " option #1"
    54                 RenderBR {BR} at (147,221) size 1x0
    55                 RenderBlock {INPUT} at (2,248) size 13x12
    56                 RenderText {#text} at (17,229) size 131x37
    57                   text run at (17,229) width 131: " option #2"
    58                 RenderBR {BR} at (147,258) size 1x0
     43                RenderBlock {INPUT} at (2,136) size 12x13
     44                RenderText {#text} at (16,118) size 73x37
     45                  text run at (16,118) width 73: " Male"
     46                RenderBR {BR} at (89,147) size 0x0
     47                RenderBlock {INPUT} at (2,173) size 12x13
     48                RenderText {#text} at (16,155) size 102x37
     49                  text run at (16,155) width 102: " Female"
     50                RenderBR {BR} at (118,184) size 0x0
     51                RenderBlock {INPUT} at (2,211) size 12x12
     52                RenderText {#text} at (16,192) size 130x37
     53                  text run at (16,192) width 130: " option #1"
     54                RenderBR {BR} at (146,221) size 0x0
     55                RenderBlock {INPUT} at (2,248) size 12x12
     56                RenderText {#text} at (16,229) size 130x37
     57                  text run at (16,229) width 130: " option #2"
     58                RenderBR {BR} at (146,258) size 0x0
    5959                RenderMenuList {SELECT} at (2,268) size 253x18 [bgcolor=#FFFFFF]
    6060                  RenderBlock (anonymous) at (0,0) size 253x18
  • trunk/LayoutTests/platform/mac/tables/mozilla/bugs/bug1318-expected.txt

    r161884 r162742  
    1919              RenderText {#text} at (0,0) size 0x0
    2020          RenderTableRow {TR} at (0,74) size 784x21
    21             RenderTableCell {TD} at (0,76) size 551x17 [r=1 c=0 rs=1 cs=1]
     21            RenderTableCell {TD} at (0,76) size 556x17 [r=1 c=0 rs=1 cs=1]
    2222              RenderInline {FONT} at (0,0) size 140x15
    23                 RenderText {#text} at (410,1) size 140x15
    24                   text run at (410,1) width 140: "I agree with the program"
     23                RenderText {#text} at (415,1) size 140x15
     24                  text run at (415,1) width 140: "I agree with the program"
    2525              RenderText {#text} at (0,0) size 0x0
    26             RenderTableCell {TD} at (551,74) size 71x21 [r=1 c=1 rs=1 cs=1]
    27               RenderBlock {INPUT} at (3,4) size 13x13
     26            RenderTableCell {TD} at (556,74) size 64x21 [r=1 c=1 rs=1 cs=1]
     27              RenderBlock {INPUT} at (3,4) size 12x13
    2828          RenderTableRow {TR} at (0,95) size 784x21
    29             RenderTableCell {TD} at (0,97) size 551x17 [r=2 c=0 rs=1 cs=1]
     29            RenderTableCell {TD} at (0,97) size 556x17 [r=2 c=0 rs=1 cs=1]
    3030              RenderInline {FONT} at (0,0) size 153x15
    31                 RenderText {#text} at (397,1) size 153x15
    32                   text run at (397,1) width 153: "I think vouchers are wrong"
     31                RenderText {#text} at (402,1) size 153x15
     32                  text run at (402,1) width 153: "I think vouchers are wrong"
    3333              RenderText {#text} at (0,0) size 0x0
    34             RenderTableCell {TD} at (551,95) size 71x21 [r=2 c=1 rs=1 cs=1]
    35               RenderBlock {INPUT} at (3,4) size 13x13
     34            RenderTableCell {TD} at (556,95) size 64x21 [r=2 c=1 rs=1 cs=1]
     35              RenderBlock {INPUT} at (3,4) size 12x13
    3636          RenderTableRow {TR} at (0,116) size 784x24
    37             RenderTableCell {TD} at (0,119) size 622x17 [r=3 c=0 rs=1 cs=2]
     37            RenderTableCell {TD} at (0,119) size 620x17 [r=3 c=0 rs=1 cs=2]
    3838              RenderInline {A} at (0,0) size 76x18 [color=#0000EE]
    3939                RenderInline {FONT} at (0,0) size 76x15
    40                   RenderText {#text} at (273,1) size 76x15
    41                     text run at (273,1) width 76: "View Results"
     40                  RenderText {#text} at (272,1) size 76x15
     41                    text run at (272,1) width 76: "View Results"
    4242              RenderInline {FONT} at (0,0) size 0x15
    4343                RenderText {#text} at (0,0) size 0x0
    44             RenderTableCell {TD} at (622,116) size 162x24 [r=3 c=2 rs=1 cs=2]
    45               RenderButton {INPUT} at (61,3) size 40x18 [bgcolor=#C0C0C0]
     44            RenderTableCell {TD} at (620,116) size 164x24 [r=3 c=2 rs=1 cs=2]
     45              RenderButton {INPUT} at (62,3) size 40x18 [bgcolor=#C0C0C0]
    4646                RenderBlock (anonymous) at (8,2) size 23x14
    4747                  RenderText at (0,0) size 23x13
  • trunk/LayoutTests/platform/mac/tables/mozilla/bugs/bug4527-expected.txt

    r161884 r162742  
    3434              RenderBR {BR} at (470,70) size 0x0
    3535          RenderTableRow {TR} at (0,70) size 613x25
    36             RenderTableCell {TD} at (126,70) size 244x25 [bgcolor=#CCCCCC] [r=1 c=1 rs=1 cs=1]
     36            RenderTableCell {TD} at (126,70) size 246x25 [bgcolor=#CCCCCC] [r=1 c=1 rs=1 cs=1]
    3737              RenderImage {IMG} at (0,0) size 232x25
    38             RenderTableCell {TD} at (370,71) size 110x23 [bgcolor=#CCCCCC] [r=1 c=2 rs=1 cs=1]
    39               RenderTextControl {INPUT} at (4,2) size 77x19 [bgcolor=#FFFFFF] [border: (2px inset #000000)]
     38            RenderTableCell {TD} at (372,71) size 111x23 [bgcolor=#CCCCCC] [r=1 c=2 rs=1 cs=1]
     39              RenderTextControl {INPUT} at (5,2) size 76x19 [bgcolor=#FFFFFF] [border: (2px inset #000000)]
    4040              RenderImage {INPUT} at (82,3) size 26x18
    41             RenderTableCell {TD} at (480,70) size 133x25 [bgcolor=#CCCCCC] [r=1 c=3 rs=1 cs=1]
    42               RenderBlock {INPUT} at (2,5) size 13x13
    43               RenderImage {IMG} at (17,0) size 41x25
    44               RenderBlock {INPUT} at (60,5) size 13x13
    45               RenderText {#text} at (75,2) size 5x18
    46                 text run at (75,2) width 5: " "
    47               RenderImage {IMG} at (79,0) size 47x25
    48 layer at (386,84) size 70x13 backgroundClip at (386,84) size 69x13 clip at (386,84) size 69x13
     41            RenderTableCell {TD} at (483,70) size 130x25 [bgcolor=#CCCCCC] [r=1 c=3 rs=1 cs=1]
     42              RenderBlock {INPUT} at (2,5) size 12x13
     43              RenderImage {IMG} at (16,0) size 40x25
     44              RenderBlock {INPUT} at (58,5) size 12x13
     45              RenderText {#text} at (72,2) size 4x18
     46                text run at (72,2) width 4: " "
     47              RenderImage {IMG} at (76,0) size 46x25
     48layer at (388,84) size 70x13
    4949  RenderBlock {DIV} at (3,3) size 70x13
  • trunk/LayoutTests/platform/mac/tables/mozilla_expected_failures/core/captions1-expected.txt

    r161884 r162742  
    1212      RenderTable {TABLE} at (5,46) size 90x93 [border: (10px solid #008000)]
    1313        RenderBlock {CAPTION} at (10,68) size 80x25 [border: (3px solid #800080)]
    14           RenderText {#text} at (8,3) size 47x18
    15             text run at (8,3) width 47: "caption"
     14          RenderText {#text} at (9,3) size 46x18
     15            text run at (9,3) width 46: "caption"
    1616          RenderBlock {INPUT} at (57,6) size 12x13
    1717        RenderTableSection {TBODY} at (10,10) size 70x46
     
    3535      RenderTable {TABLE} at (5,172) size 90x111 [border: (10px solid #008000)]
    3636        RenderBlock {CAPTION} at (10,68) size 80x43 [border: (3px solid #800080)]
    37           RenderText {#text} at (8,3) size 47x18
    38             text run at (8,3) width 47: "caption"
     37          RenderText {#text} at (9,3) size 46x18
     38            text run at (9,3) width 46: "caption"
    3939          RenderBlock {INPUT} at (57,6) size 12x13
    4040          RenderText {#text} at (17,22) size 46x18
     
    6060      RenderTable {TABLE} at (5,316) size 148x111 [border: (10px solid #008000)]
    6161        RenderBlock {CAPTION} at (10,68) size 138x43 [border: (3px solid #800080)]
    62           RenderText {#text} at (37,3) size 47x18
    63             text run at (37,3) width 47: "caption"
     62          RenderText {#text} at (38,3) size 46x18
     63            text run at (38,3) width 46: "caption"
    6464          RenderBlock {INPUT} at (86,6) size 12x13
    6565          RenderText {#text} at (3,22) size 142x18
     
    107107      RenderTable {TABLE} at (5,585) size 136x93 [border: (10px solid #008000)]
    108108        RenderBlock {CAPTION} at (10,68) size 126x25 [border: (3px solid #800080)]
    109           RenderText {#text} at (31,3) size 47x18
    110             text run at (31,3) width 47: "caption"
     109          RenderText {#text} at (32,3) size 46x18
     110            text run at (32,3) width 46: "caption"
    111111          RenderBlock {INPUT} at (80,6) size 12x13
    112112        RenderTableSection {TBODY} at (10,10) size 116x46
     
    137137                text run at (1,1) width 46: "foo foo"
    138138        RenderBlock {CAPTION} at (10,90) size 96x25 [border: (3px solid #800080)]
    139           RenderText {#text} at (16,3) size 47x18
    140             text run at (16,3) width 47: "caption"
     139          RenderText {#text} at (17,3) size 46x18
     140            text run at (17,3) width 46: "caption"
    141141          RenderBlock {INPUT} at (65,6) size 12x13
    142142        RenderTableSection {TBODY} at (10,34) size 86x44
  • trunk/LayoutTests/platform/mac/tables/mozilla_expected_failures/core/captions2-expected.txt

    r161884 r162742  
    1212      RenderTable {TABLE} at (5,46) size 90x93 [border: (10px solid #008000)]
    1313        RenderBlock {CAPTION} at (10,2) size 80x25 [border: (3px solid #800080)]
    14           RenderText {#text} at (8,3) size 47x18
    15             text run at (8,3) width 47: "caption"
     14          RenderText {#text} at (9,3) size 46x18
     15            text run at (9,3) width 46: "caption"
    1616          RenderBlock {INPUT} at (57,6) size 12x13
    1717        RenderTableSection {TBODY} at (10,37) size 70x46
     
    3535      RenderTable {TABLE} at (5,172) size 90x111 [border: (10px solid #008000)]
    3636        RenderBlock {CAPTION} at (10,2) size 80x43 [border: (3px solid #800080)]
    37           RenderText {#text} at (8,3) size 47x18
    38             text run at (8,3) width 47: "caption"
     37          RenderText {#text} at (9,3) size 46x18
     38            text run at (9,3) width 46: "caption"
    3939          RenderBlock {INPUT} at (57,6) size 12x13
    4040          RenderText {#text} at (17,22) size 46x18
     
    6060      RenderTable {TABLE} at (5,316) size 148x111 [border: (10px solid #008000)]
    6161        RenderBlock {CAPTION} at (10,2) size 138x43 [border: (3px solid #800080)]
    62           RenderText {#text} at (37,3) size 47x18
    63             text run at (37,3) width 47: "caption"
     62          RenderText {#text} at (38,3) size 46x18
     63            text run at (38,3) width 46: "caption"
    6464          RenderBlock {INPUT} at (86,6) size 12x13
    6565          RenderText {#text} at (3,22) size 142x18
     
    107107      RenderTable {TABLE} at (5,585) size 136x93 [border: (10px solid #008000)]
    108108        RenderBlock {CAPTION} at (10,2) size 126x25 [border: (3px solid #800080)]
    109           RenderText {#text} at (31,3) size 47x18
    110             text run at (31,3) width 47: "caption"
     109          RenderText {#text} at (32,3) size 46x18
     110            text run at (32,3) width 46: "caption"
    111111          RenderBlock {INPUT} at (80,6) size 12x13
    112112        RenderTableSection {TBODY} at (10,37) size 116x46
     
    132132      RenderTable {TABLE} at (5,711) size 106x115 [border: (10px solid #008000)]
    133133        RenderBlock {CAPTION} at (10,2) size 96x25 [border: (3px solid #800080)]
    134           RenderText {#text} at (16,3) size 47x18
    135             text run at (16,3) width 47: "caption"
     134          RenderText {#text} at (17,3) size 46x18
     135            text run at (17,3) width 46: "caption"
    136136          RenderBlock {INPUT} at (65,6) size 12x13
    137137        RenderTableSection {TBODY} at (10,37) size 86x68
  • trunk/Source/WebCore/ChangeLog

    r162741 r162742  
     12014-01-24  Zalan Bujtas  <zalan@apple.com>
     2
     3        Subpixel layout: Default style of input type=checkbox/radio (0.5ex) adds 1px extra margin on both left and right.
     4        https://bugs.webkit.org/show_bug.cgi?id=125728
     5
     6        Reviewed by Simon Fraser.
     7
     8        Using the 0.5ex value to set checkbox/radio left and right margins is a long-standing
     9        (khtml) behavior. While it indicates dynamic behavior, in order to get the margins changed,
     10        the widget's font size needs to be set, which is rather rare for such input types.
     11        It also results in odd layout, where the checkbox's indentation may seem to change randomly.
     12
     13        '<input style="font-size: 30px;" type="checkbox">foo' changes neither the checkbox
     14        nor the text size, but it indents the line by about 15px.
     15
     16        Other browsers (FF, Opera with Presto) disagree and they set static margins values.
     17        2px is the current default computed value.
     18
     19        * css/html.css:
     20        (input[type="radio"], input[type="checkbox"]):
     21
    1222014-01-24  Oliver Hunt  <oliver@apple.com>
    223
  • trunk/Source/WebCore/css/html.css

    r161286 r162742  
    680680
    681681input[type="radio"], input[type="checkbox"] {
    682     margin: 3px 0.5ex;
     682    margin: 3px 2px;
    683683#if defined(WTF_PLATFORM_IOS) && WTF_PLATFORM_IOS
    684684    border: 1px solid #4c4c4c;
Note: See TracChangeset for help on using the changeset viewer.