Changeset 61234 in webkit


Ignore:
Timestamp:
Jun 15, 2010 11:27:37 PM (14 years ago)
Author:
abarth@webkit.org
Message:

2010-06-15 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Enable HTML5 lexer
https://bugs.webkit.org/show_bug.cgi?id=40650

  • page/Settings.cpp: (WebCore::Settings::Settings):

2010-06-15 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Enable HTML5 lexer
https://bugs.webkit.org/show_bug.cgi?id=40650

This patch updates the expected results for tests that conflict with
the HTML5 specification. In a later patch, I'll update the tests
themselves to fix pass/fail messages.

  • fast/doctypes/005-case-preserving-expected.txt:
    • HTML5 specifies case normalization for DOCTYPEs.
  • fast/js/missing-title-end-tag-js-expected.txt:
    • HTML5 requires us to swallow the entire document when <title> is unterminated.
  • fast/parser/comment-in-iframe-expected.txt:
  • fast/parser/comment-in-script-tricky-expected.txt:
  • fast/parser/comment-in-title-expected.txt:
  • fast/parser/comments-expected.txt:
    • Differences due to HTML5 comment parsing.
  • fast/parser/eightdigithexentity-expected.txt:
    • HTML5 specifies a different behavior for &#x00FFFFFF;
  • fast/parser/entity-end-iframe-tag-expected.txt:
    • HTML5 specifies a different behavior for &lt;/iframe>
  • fast/parser/entity-surrogate-pairs-expected.txt:
    • HTML5 doesn't allow entities to create surrogate pairs.
  • fast/parser/html-whitespace-expected.txt:
    • HTML5 has a different handling of CR in this case.
  • fast/parser/script-tag-with-trailing-slash-expected.txt:
    • HTML5 does not allow self-closing <script/> tags.
  • fast/parser/tag-with-exclamation-point-expected.txt:
    • HTML5 treats bogus DOCTYPEs as comments.
  • fast/parser/xml-directive-in-dom-expected.txt:
    • HTML5 attaches <?xml?> processing directives to the DOM as comments.
  • fast/xpath/xpath-functional-test-expected.txt:
    • I don't fully understand this test, but our new behavior matches the Firefox nightly builds (which have an HTML5 parser).
  • html5lib/runner-expected.txt:
  • html5lib/webkit-resumer-expected.txt:
    • Massive progressions on HTML5 conformance.
  • http/tests/loading/gmail-assert-on-load-expected.txt:
    • I don't fully understand this behavior change. It might represent a bug. We're still investigating.
  • http/tests/security/xssAuditor/embed-tag-null-char-expected.txt:
    • Update expected results for change in NULL char handling.
  • http/tests/security/xssAuditor/img-onerror-tricky-expected.txt:
    • This exploit no longer works in the HTML5 parser, so it's not blocked.
  • http/tests/security/xssAuditor/javascript-link-HTML-entities-null-char-expected.txt:
    • This a real regression. We need to update the XSSAuditor to use the HTML5 parser's HTML entity decoder. I'll do that in a followup patch because there doesn't appear to be an easy way to key the choice off of the WebCore::Setting.
  • http/tests/security/xssAuditor/malformed-HTML-expected.txt:
    • Slightly different handling of malformed HTML. The exploit is still blocked.
  • http/tests/security/xssAuditor/object-embed-tag-null-char-expected.txt:
    • Update expected result due to different NULL character handling.
  • inspector/audits-panel-functional-expected.txt:
  • inspector/timeline-script-tag-1-expected.txt:
    • Slightly different semantics around document.write.
  • inspector/elements-panel-structure-expected.txt:
    • HTML5 specifies case normalization for DOCTYPEs.
  • platform/mac/css1/box_properties/float_elements_in_series-expected.txt:
    • HTML5 specifies different handling of "<foo<bar"
  • platform/mac/fast/doctypes/003-expected.txt:
    • HTML5 specifies case normalization for DOCTYPEs.
  • platform/mac/fast/dom/stripNullFromTextNodes-expected.txt:
    • HTML5 specifies different handling of NULL characters.
  • platform/mac/fast/invalid/016-expected.txt:
    • HTML5 specifies different handling of "<foo<bar"
  • platform/mac/fast/parser/broken-comments-vs-parsing-mode-expected.txt:
    • HTML5 specifies different handling of HTML comments.
  • platform/mac/fast/parser/comment-in-style-expected.txt:
    • HTML5 specifies different handling of HTML comments.
  • platform/mac/fast/parser/parseCommentsInTitles-expected.txt:
    • HTML5 specifies different handling of HTML comments.
  • platform/mac/fast/text/international/bidi-linebreak-001-expected.txt:
  • platform/mac/fast/text/international/bidi-linebreak-002-expected.txt:
  • platform/mac/fast/text/international/bidi-linebreak-003-expected.txt:
  • platform/mac/fast/text/international/hindi-whitespace-expected.txt:
    • HTML5 specifies different handling CR. I don't fully understand the consequences of this change, but our new behavior matches the Firefox nightly.
  • platform/mac/fast/text/stripNullFromText-expected.txt:
    • HTML5 specifies different handling of NULL characters.
  • platform/mac/fast/tokenizer/missing-title-end-tag-1-expected.txt:
  • platform/mac/fast/tokenizer/missing-title-end-tag-2-expected.txt:
    • HTML5 requires us to swallow the entire document when <title> is unterminated.
  • platform/mac/fast/tokenizer/script_extra_close-expected.txt:
    • We're coalescing text nodes slightly different in the new parser. We're going to get this up to spec when we work on the TreeConstructor (which is where the spec handles text node coalescing).
  • platform/mac/tables/mozilla/images/adforce_imgis_com-expected.txt:
    • Different handling of crazy unicode characters (replaced with FFFD). Still investigating whether this is a real bug.
  • webarchive/archive-empty-frame-dom-expected.webarchive:
    • HTML5 specifies case normalization for DOCTYPEs.

2010-06-15 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Enable HTML5 lexer
https://bugs.webkit.org/show_bug.cgi?id=40650

  • DumpRenderTree/mac/DumpRenderTree.mm: (initializeGlobalsFromCommandLineOptions):
Location:
trunk
Files:
47 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r61232 r61234  
     12010-06-15  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Enable HTML5 lexer
     6        https://bugs.webkit.org/show_bug.cgi?id=40650
     7
     8        This patch updates the expected results for tests that conflict with
     9        the HTML5 specification.  In a later patch, I'll update the tests
     10        themselves to fix pass/fail messages.
     11
     12        * fast/doctypes/005-case-preserving-expected.txt:
     13            - HTML5 specifies case normalization for DOCTYPEs.
     14        * fast/js/missing-title-end-tag-js-expected.txt:
     15            - HTML5 requires us to swallow the entire document when <title> is
     16              unterminated.
     17        * fast/parser/comment-in-iframe-expected.txt:
     18        * fast/parser/comment-in-script-tricky-expected.txt:
     19        * fast/parser/comment-in-title-expected.txt:
     20        * fast/parser/comments-expected.txt:
     21            - Differences due to HTML5 comment parsing.
     22        * fast/parser/eightdigithexentity-expected.txt:
     23            - HTML5 specifies a different behavior for &#x00FFFFFF;
     24        * fast/parser/entity-end-iframe-tag-expected.txt:
     25            - HTML5 specifies a different behavior for &lt;/iframe>
     26        * fast/parser/entity-surrogate-pairs-expected.txt:
     27            - HTML5 doesn't allow entities to create surrogate pairs.
     28        * fast/parser/html-whitespace-expected.txt:
     29            - HTML5 has a different handling of CR in this case.
     30        * fast/parser/script-tag-with-trailing-slash-expected.txt:
     31            - HTML5 does not allow self-closing <script/> tags.
     32        * fast/parser/tag-with-exclamation-point-expected.txt:
     33            - HTML5 treats bogus DOCTYPEs as comments.
     34        * fast/parser/xml-directive-in-dom-expected.txt:
     35            - HTML5 attaches <?xml?> processing directives to the DOM as
     36              comments.
     37        * fast/xpath/xpath-functional-test-expected.txt:
     38            - I don't fully understand this test, but our new behavior matches
     39              the Firefox nightly builds (which have an HTML5 parser).
     40        * html5lib/runner-expected.txt:
     41        * html5lib/webkit-resumer-expected.txt:
     42            - Massive progressions on HTML5 conformance.
     43        * http/tests/loading/gmail-assert-on-load-expected.txt:
     44            - I don't fully understand this behavior change.  It might
     45              represent a bug.  We're still investigating.
     46        * http/tests/security/xssAuditor/embed-tag-null-char-expected.txt:
     47            - Update expected results for change in NULL char handling.
     48        * http/tests/security/xssAuditor/img-onerror-tricky-expected.txt:
     49            - This exploit no longer works in the HTML5 parser, so it's not
     50              blocked.
     51        * http/tests/security/xssAuditor/javascript-link-HTML-entities-null-char-expected.txt:
     52            - This a real regression.  We need to update the XSSAuditor to use
     53              the HTML5 parser's HTML entity decoder.  I'll do that in a
     54              followup patch because there doesn't appear to be an easy way to
     55              key the choice off of the WebCore::Setting.
     56        * http/tests/security/xssAuditor/malformed-HTML-expected.txt:
     57            - Slightly different handling of malformed HTML.  The exploit is still blocked.
     58        * http/tests/security/xssAuditor/object-embed-tag-null-char-expected.txt:
     59            - Update expected result due to different NULL character handling.
     60        * inspector/audits-panel-functional-expected.txt:
     61        * inspector/timeline-script-tag-1-expected.txt:
     62            - Slightly different semantics around document.write.
     63        * inspector/elements-panel-structure-expected.txt:
     64            - HTML5 specifies case normalization for DOCTYPEs.
     65        * platform/mac/css1/box_properties/float_elements_in_series-expected.txt:
     66            - HTML5 specifies different handling of "<foo<bar"
     67        * platform/mac/fast/doctypes/003-expected.txt:
     68            - HTML5 specifies case normalization for DOCTYPEs.
     69        * platform/mac/fast/dom/stripNullFromTextNodes-expected.txt:
     70            - HTML5 specifies different handling of NULL characters.
     71        * platform/mac/fast/invalid/016-expected.txt:
     72            - HTML5 specifies different handling of "<foo<bar"
     73        * platform/mac/fast/parser/broken-comments-vs-parsing-mode-expected.txt:
     74            - HTML5 specifies different handling of HTML comments.
     75        * platform/mac/fast/parser/comment-in-style-expected.txt:
     76            - HTML5 specifies different handling of HTML comments.
     77        * platform/mac/fast/parser/parseCommentsInTitles-expected.txt:
     78            - HTML5 specifies different handling of HTML comments.
     79        * platform/mac/fast/text/international/bidi-linebreak-001-expected.txt:
     80        * platform/mac/fast/text/international/bidi-linebreak-002-expected.txt:
     81        * platform/mac/fast/text/international/bidi-linebreak-003-expected.txt:
     82        * platform/mac/fast/text/international/hindi-whitespace-expected.txt:
     83            - HTML5 specifies different handling CR.  I don't fully understand
     84              the consequences of this change, but our new behavior matches the
     85              Firefox nightly.
     86        * platform/mac/fast/text/stripNullFromText-expected.txt:
     87            - HTML5 specifies different handling of NULL characters.
     88        * platform/mac/fast/tokenizer/missing-title-end-tag-1-expected.txt:
     89        * platform/mac/fast/tokenizer/missing-title-end-tag-2-expected.txt:
     90            - HTML5 requires us to swallow the entire document when <title> is
     91              unterminated.
     92        * platform/mac/fast/tokenizer/script_extra_close-expected.txt:
     93            - We're coalescing text nodes slightly different in the new parser.
     94              We're going to get this up to spec when we work on the
     95              TreeConstructor (which is where the spec handles text node
     96              coalescing).
     97        * platform/mac/tables/mozilla/images/adforce_imgis_com-expected.txt:
     98            - Different handling of crazy unicode characters (replaced with
     99              FFFD).  Still investigating whether this is a real bug.
     100        * webarchive/archive-empty-frame-dom-expected.webarchive:
     101            - HTML5 specifies case normalization for DOCTYPEs.
     102
    11032010-06-15  Dmitry Titov  <dimich@chromium.org>
    2104
  • trunk/LayoutTests/fast/doctypes/005-case-preserving-expected.txt

    r14204 r61234  
    1 SUCCESS - This document has a doctype and each component has the correct case
     1FAILED - This document has a doctype, but one or more components has the wrong case
    22
    3 name = HtMl
    4 publicId = -//W3C//DTD HTML 4.01 Transitional//EN
    5 systemId = http://www.w3.org/TR/html4/loose.dtd
     3name = html (should be HtMl)
     4publicId = -//W3C//DTD HTML 4.01 Transitional//EN (should be -//W3C//DTD HTML 4.01 Transitional//EN)
     5systemId = http://www.w3.org/TR/html4/loose.dtd (should be http://www.w3.org/TR/html4/loose.dtd)
  • trunk/LayoutTests/fast/js/missing-title-end-tag-js-expected.txt

    r13191 r61234  
    1 This test checks that the first <script> tag after an unclosed <title> tag is parsed correctly. Early versions of the patch for Bugzilla Bug 3905 did not reset a state variable properly, causing the first <script></script> tag in the document to contain everything after the <title> tag.
    2 
    3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
    4 
    5 
    6 PASS successfullyParsed is true
    7 
    8 TEST COMPLETE
    9 
     1layer at (0,0) size 800x600
     2  RenderView at (0,0) size 800x600
     3layer at (0,0) size 800x600
     4  RenderBlock {HTML} at (0,0) size 800x600
     5    RenderBody {BODY} at (8,8) size 784x584
  • trunk/LayoutTests/fast/parser/comment-in-iframe-expected.txt

    r34831 r61234  
    1  There should be no text above this line.
     1 --> This should be part of the iframe (and therefore invisible).
     2There should be no text above this line.
  • trunk/LayoutTests/fast/parser/comment-in-script-tricky-expected.txt

    r34787 r61234  
    1 This should invoke document.write.
     1--> document.write('This should invoke document.write.');
  • trunk/LayoutTests/fast/parser/comment-in-title-expected.txt

    r34787 r61234  
     1--> This text should be part of the title.
    12The title of this document is:
    2 <!-- </title> --> This text should be part of the title.
     3<!--
  • trunk/LayoutTests/fast/parser/comments-expected.txt

    r60786 r61234  
    22
    33Basic comments (1 PASSED):
    4 PASSED
     4PASSED FAILED-->
     5
    56Comment series (1 PASSED):
    6 PASSED
     7PASSED FAILED-->
     8
    79Dash runs (3 PASSED):
    8 PASSED PASSED PASSED
     10PASSED FAILED PASSED PASSED
    911
    1012Empty comments (2 PASSED):
    11 PASSED PASSED
     13PASSED FAILED--> PASSED
    1214
    1315Multiple lines (1 PASSED):
    14 PASSED
     16PASSED FAILED-->
    1517
    1618Compatibility (2 PASSED):
    17 PASSED PASSED
     19PASSED FAILED--> PASSED FAILED-->
    1820
    1921Tab after comment close:
     22FAILED: should be part of the comment -->
     23
    2024Text after comment close:
    2125Extra comment after markup declaration close:
    2226FAILED: extra comment end and markup declaration close -->
     27FAILED: extra comment end w/space and markup declaration close -->
     28
    2329Nested comment (1 PASSED):
    2430PASSED (outer nested comment) -->
  • trunk/LayoutTests/fast/parser/eightdigithexentity-expected.txt

    r44799 r61234  
    1 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA&#x00FFFFFF;some more stuff &hello;
     1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsome more stuff &hello;
    22This test passes if the output does not contain a garbage character.
    33
  • trunk/LayoutTests/fast/parser/entity-end-iframe-tag-expected.txt

    r34722 r61234  
    55
    66
    7 PASS document.getElementById("myiframe").textContent is expectedResult
     7FAIL document.getElementById("myiframe").textContent should be </iframe>. Was &lt;/iframe>.
    88PASS successfullyParsed is true
    99
  • trunk/LayoutTests/fast/parser/entity-surrogate-pairs-expected.txt

    r21687 r61234  
    33Should be the same character (DESERET CAPITAL LETTER LONG I), repeated three times:
    44
    5 𐐀𐐀𐐀
     5𐐀����
  • trunk/LayoutTests/fast/parser/html-whitespace-expected.txt

    r27886 r61234  
    101009 rgb(0, 128, 0)
    11110a rgb(0, 128, 0)
    12 0b rgb(0, 128, 0)
     120b rgb(255, 0, 0)
    13130c rgb(0, 128, 0)
    14140d rgb(0, 128, 0)
  • trunk/LayoutTests/fast/parser/script-tag-with-trailing-slash-expected.txt

    r21775 r61234  
    1 CONSOLE MESSAGE: line 1: SyntaxError: Parse error
    2 You should not see the text "inside" the following script tag: This is the text inside the script tag.
     1You should not see the text "inside" the following script tag:
  • trunk/LayoutTests/fast/parser/tag-with-exclamation-point-expected.txt

    r21687 r61234  
    77!doctype with id "doctype": null
    88
    9 !foo div child count: 0
     9!foo div child count: 2
    1010
    11 !doctype div child count: 0
     11child 1 -- nodeName: #comment nodeValue: foo id="foo"
     12
     13child 2 -- nodeName: #comment nodeValue: !foo
     14
     15!doctype div child count: 1
     16
     17child 1 -- nodeName: #comment nodeValue: !doctype
  • trunk/LayoutTests/fast/parser/xml-directive-in-dom-expected.txt

    r60913 r61234  
    11[object HTMLHtmlElement]
    22[object DocumentType]
     3[object Comment]
    34
    45
  • trunk/LayoutTests/fast/xpath/xpath-functional-test-expected.txt

    r27836 r61234  
    2828[ok].//*[attribute::id]
    2929[ok].//blockquote/text()
    30 [ok].//blockquote/comment()
     30[ng].//blockquote/comment()
    3131[ng].//blockquote/processing-instruction()
    3232[ng].//blockquote/processing-instruction("pi")
  • trunk/LayoutTests/html5lib/runner-expected.txt

    r60944 r61234  
    55resources/tests1.dat:
    6625
    7 27
    8729
    9830
     
    131235
    141337
    15 38
    16 39
    17 40
    181441
    19 42
    20 43
    21 44
    22 45
    23 46
    24 47
    25 48
    26 49
    271550
    281651
     
    322057
    332159
    34 77
    352278
    362379
     
    382581
    392682
    40 84
    412787
    422890
     
    5238
    5339resources/tests2.dat:
    54 2
    55 6
    56 7
    57 8
    58 9
    59 10
    60 11
    61 16
     406
     417
     428
     439
     4410
     4511
    624617
    634718
     
    766053
    776154
    78 56
    796257
    80 59
    8163
    8264resources/tests3.dat:
    83 14
    84 15
    856516
    866617
     
    100808
    101819
    102 14
    103 15
    1048216
    10583
    10684resources/tests6.dat:
    107851
    108 4
    109 5
    110866
    111878
     
    14011618
    14111719
    142 22
    143 23
    14411824
    14511925
     
    237211
    238212resources/tests16.dat:
    239 2
    240 3
    241 4
    242 5
    243 6
    244 7
    245 8
    246 9
    247 10
    248 12
    249 13
    250 14
    251 15
    252 16
    253 17
    254 19
    255 20
    256 21
    257 22
    258 23
    259 24
    260 25
    261 26
     2133
     2144
     2155
     2166
     2177
     2188
     2199
     22010
     22112
     22213
     22314
     22415
     22516
     22617
     22725
    26222827
    26322928
    264 29
    265 30
    266 31
    267 32
    268 33
    269 34
    270 35
    271 36
    272 37
    273 38
    274 39
    275 40
    276 41
    27723042
    278 43
    27923144
    28023245
    281 46
    282 47
    283 48
    284 49
    285 50
    286 51
    287 52
    288 53
    289 54
    290 55
    29123356
    29223457
    29323558
    294 59
    295 60
    296 64
    297 65
    298 66
    299 67
    300 68
    301 69
    302 70
    303 71
    304 72
    305 73
    306 75
    307 78
    308 79
    309 81
    310 83
    31123684
    31223785
     
    31423987
    31524088
    316 89
    317 91
    318 92
    31924194
    320 96
    32124297
    32224398
     
    333254110
    334255111
    335 113
    336 114
    337 115
    338 116
    339 117
    340 118
    341256119
    342 120
    343257121
    344258122
    345 123
    346 124
    347 125
    348 126
    349 127
    350 128
    351 129
    352 130
    353 131
    354 132
    355 133
    356 134
    357 135
    358259136
    359 137
    360260138
    361261139
    362 140
    363 141
    364 142
    365 143
    366 144
    367 145
    368 146
    369 147
    370262148
    371263149
    372264150
    373 151
    374 152
    375 156
    376 157
    377 158
    378 159
    379 160
    380 161
    381 162
    382 163
    383 164
    384 165
    385 167
    386 170
    387 171
    388 173
    389 175
    390265176
    391266177
     
    393268179
    394269180
    395 181
    396 183
    397 184
    398270186
    399271
    400272resources/webkit01.dat:
    401 13
    402 15
    403 16
    404 
    405 resources/doctype01.dat:
    406 2
    407 4
    408 5
    409 8
    410 9
    411 10
    412 11
    413 12
    414 13
    415 17
    416 18
    417 19
    418 20
    419 21
    420 22
    421 24
    422 26
    423 27
    424 31
    425 33
    426 
    427 resources/scriptdata01.dat:
    428 6
    429 17
    430 18
    431 19
    432 21
    433 22
    434 23
    435 24
    436 26
     27317
     274
     275resources/doctype01.dat: PASS
     276
     277resources/scriptdata01.dat: PASS
    437278
    438279resources/entities01.dat:
    4392802
    4402815
    441 21
    442 22
    443 59
    444 60
    445 61
    446 62
    447 67
    448 68
    449 
    450 resources/entities02.dat:
    451 5
    452 
    453 resources/comments01.dat:
    454 3
    455 6
    456 8
    457 9
    458 10
    459 11
    460 12
     282
     283resources/entities02.dat: PASS
     284
     285resources/comments01.dat: PASS
  • trunk/LayoutTests/html5lib/webkit-resumer-expected.txt

    r60944 r61234  
    158158CONSOLE MESSAGE: line 3: FOO<span>BAR</span>BAZ
    159159resources/webkit01.dat:
    160 517.1
    161 518.2
    162160519.3
    163161520.4
     
    165163522.6
    166164523.7
    167 549.1
    168 550.2
    169 551.3
    170 552.4
    171 553.5
    172 554.6
    173 555.7
    174 556.8
    175 557.9
    176 558.10
    177 559.11
    178 560.12
    179 561.13
    180 562.14
    181 563.15
    182 564.16
    183 565.17
    184 566.18
    185 567.19
    186 568.20
    187 569.21
    188 570.1
    189 571.2
    190 572.3
    191 573.4
    192 574.5
    193 575.6
    194 576.7
    195 577.8
    196 578.9
    197 579.10
    198 580.11
    199 581.12
    200 582.13
    201 583.14
    202 584.15
    203 585.16
    204 586.17
    205 587.18
    206 588.19
    207 589.20
    208 590.21
    209 591.22
    210 592.23
     165593.1
     166594.2
     167595.3
     168596.4
     169597.5
     170598.6
     171599.7
     172600.8
     173601.9
     174602.10
     175603.11
  • trunk/LayoutTests/http/tests/loading/gmail-assert-on-load-expected.txt

    r39097 r61234  
    55frame "<!--framePath //<!--frame0-->-->" - didCommitLoadForFrame
    66frame "<!--framePath //<!--frame0-->-->" - didFinishDocumentLoadForFrame
    7 main frame - didHandleOnloadEventsForFrame
     7frame "<!--framePath //<!--frame0-->-->" - didFailLoadWithError
    88main frame - didFinishLoadForFrame
    99This test provokes HTMLTokenizer::timerFired to be called and from within timerFired we want to call WebCore::pageDestroyed.
  • trunk/LayoutTests/http/tests/security/xssAuditor/embed-tag-null-char-expected.txt

    r51445 r61234  
    1 CONSOLE MESSAGE: line 1: Refused to load an object. URL found within request: "http://127.0.0.1:8000/security/xssAuditor/resources/dummy.swf".
     1CONSOLE MESSAGE: line 1: Refused to load an object. URL found within request: "http://127.0.0.1:8000/sec�urity/xssAuditor/resources/dummy.swf".
    22
    33
  • trunk/LayoutTests/http/tests/security/xssAuditor/img-onerror-tricky-expected.txt

    r44985 r61234  
    1 CONSOLE MESSAGE: line 1: Refused to execute a JavaScript script. Source code of script found within request.
    21
    3 
  • trunk/LayoutTests/http/tests/security/xssAuditor/javascript-link-HTML-entities-null-char-expected.txt

    r45752 r61234  
    1 CONSOLE MESSAGE: line 1: Refused to execute a JavaScript script. Source code of script found within request.
     1CONSOLE MESSAGE: line 1: SyntaxError: Parse error
    22
    3 
  • trunk/LayoutTests/http/tests/security/xssAuditor/malformed-HTML-expected.txt

    r45314 r61234  
    44Frame: '<!--framePath //<!--frame0-->-->'
    55--------
    6 <
     6
  • trunk/LayoutTests/http/tests/security/xssAuditor/object-embed-tag-null-char-expected.txt

    r51445 r61234  
    1 CONSOLE MESSAGE: line 1: Refused to load an object. URL found within request: "http://127.0.0.1:8000/security/xssAuditor/resources/dummy.swf".
     1CONSOLE MESSAGE: line 1: Refused to load an object. URL found within request: "http://127.0.0.1:8000/sec�urity/xssAuditor/resources/dummy.swf".
    22
    33
  • trunk/LayoutTests/inspector/audits-panel-functional-expected.txt

    r56909 r61234  
    44     There are multiple resources served from same domain. Consider combining them into as few files as possible.
    55      4 JavaScript resources served from [domain].
     6    Minimize cookie size
     7     The average cookie size for all requests on this page is 11B
    68    Specify image dimensions (2)
    79     A width and height should be specified for all images in order to speed up page display. The following image(s) are missing a width and/or height:
  • trunk/LayoutTests/inspector/elements-panel-structure-expected.txt

    r60562 r61234  
    22
    33
    4 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
     4<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    55<html>
    66<head>…
  • trunk/LayoutTests/inspector/timeline-script-tag-1-expected.txt

    r60562 r61234  
    11Tests the Timeline API instrumentation of an HTML script tag.
    22
     3ParseHTML
    34ParseHTML
    45----> EvaluateScript
     
    1718    totalHeapSize : <number>
    1819}
     20ParseHTML
    1921
  • trunk/LayoutTests/platform/mac/css1/box_properties/float_elements_in_series-expected.txt

    r25970 r61234  
    6363              RenderTableCell {TD} at (20,9) size 100x1 [bgcolor=#FFFF00] [r=0 c=1 rs=1 cs=1]
    6464                RenderImage {IMG} at (0,0) size 100x1
    65               RenderTableCell {TD} at (120,9) size 20x1 [bgcolor=#000000] [r=0 c=2 rs=1 cs=1]
    66                 RenderImage {IMG} at (0,0) size 20x1
     65              RenderTableCell {TD} at (120,9) size 20x0 [bgcolor=#000000] [r=0 c=2 rs=1 cs=1]
    6766              RenderTableCell {TD} at (140,9) size 20x1 [bgcolor=#FFFFFF] [r=0 c=3 rs=1 cs=1]
    6867                RenderImage {IMG} at (0,0) size 20x1
     
    132131                      RenderTableCell {TD} at (20,9) size 100x1 [bgcolor=#FFFF00] [r=0 c=1 rs=1 cs=1]
    133132                        RenderImage {IMG} at (0,0) size 100x1
    134                       RenderTableCell {TD} at (120,9) size 20x1 [bgcolor=#000000] [r=0 c=2 rs=1 cs=1]
    135                         RenderImage {IMG} at (0,0) size 20x1
     133                      RenderTableCell {TD} at (120,9) size 20x0 [bgcolor=#000000] [r=0 c=2 rs=1 cs=1]
    136134                      RenderTableCell {TD} at (140,9) size 20x1 [bgcolor=#FFFFFF] [r=0 c=3 rs=1 cs=1]
    137135                        RenderImage {IMG} at (0,0) size 20x1
  • trunk/LayoutTests/platform/mac/fast/doctypes/003-expected.txt

    r30431 r61234  
    11layer at (0,0) size 800x600
    22  RenderView at (0,0) size 800x600
    3 layer at (0,0) size 800x600
    4   RenderBlock {HTML} at (0,0) size 800x600
    5     RenderBody {BODY} at (8,8) size 784x576
     3layer at (0,0) size 800x176
     4  RenderBlock {HTML} at (0,0) size 800x176
     5    RenderBody {BODY} at (8,8) size 784x152
    66      RenderBlock {DIV} at (0,0) size 784x100
    77      RenderBlock (anonymous) at (0,100) size 784x18
     
    99          text run at (0,0) width 309: "This file has a doc type with no public identifier. "
    1010          text run at (309,0) width 180: "We should be in strict mode."
    11       RenderBlock {UL} at (0,134) size 784x36
    12         RenderListItem {LI} at (40,0) size 744x36
    13           RenderBlock (anonymous) at (0,0) size 744x18
    14             RenderListMarker at (-17,0) size 7x18: bullet
    15           RenderBlock {UL} at (0,18) size 744x18
     11      RenderBlock {UL} at (0,134) size 784x18
     12        RenderListItem {LI} at (40,0) size 744x18
     13          RenderBlock {UL} at (0,0) size 744x18
    1614            RenderListItem {LI} at (40,0) size 704x18
     15              RenderListMarker at (-57,0) size 7x18: bullet
    1716              RenderListMarker at (-17,0) size 7x18: white bullet
    1817              RenderText {#text} at (0,0) size 251x18
  • trunk/LayoutTests/platform/mac/fast/dom/stripNullFromTextNodes-expected.txt

    r30635 r61234  
    1 layer at (0,0) size 1072x585
     1layer at (0,0) size 1104x585
    22  RenderView at (0,0) size 800x585
    3 layer at (0,0) size 1072x585
     3layer at (0,0) size 1104x585
    44  RenderBlock {HTML} at (0,0) size 800x585
    55    RenderBody {BODY} at (8,8) size 784x564
    6       RenderBlock {DIV} at (0,0) size 784x18
    7         RenderText {#text} at (0,0) size 31x18
    8           text run at (0,0) width 31: "hello"
    9       RenderBlock {PRE} at (0,31) size 784x15
     6      RenderBlock {DIV} at (0,0) size 784x19
     7        RenderText {#text} at (0,1) size 255x18
     8          text run at (0,1) width 255: "\x{FFFD}\x{FFFD}\x{FFFD}\x{FFFD}\x{FFFD}\x{FFFD}\x{FFFD}\x{FFFD}\x{FFFD}hell\x{FFFD}\x{FFFD}\x{FFFD}\x{FFFD}\x{FFFD}o"
     9      RenderBlock {PRE} at (0,32) size 784x15
    1010        RenderText {#text} at (0,0) size 1048x15
    1111          text run at (0,0) width 1048: "The null characters should be stripped out of the sting above and it should have a length of 5. And the DOM thinks the length is..."
    12         RenderText {#text} at (1048,0) size 16x15
    13           text run at (1048,0) width 16: "5!"
     12        RenderText {#text} at (1048,0) size 48x15
     13          text run at (1048,0) width 48: "19 :-("
  • trunk/LayoutTests/platform/mac/fast/invalid/016-expected.txt

    r25970 r61234  
    1010      RenderBlock {P} at (0,34) size 784x104
    1111        RenderImage {IMG} at (0,0) size 104x104 [bgcolor=#008000] [border: (2px solid #000000)]
    12         RenderImage {IMG} at (104,0) size 104x104 [bgcolor=#008000] [border: (2px solid #000000)]
  • trunk/LayoutTests/platform/mac/fast/parser/broken-comments-vs-parsing-mode-expected.txt

    r30635 r61234  
    33layer at (0,0) size 800x600
    44  RenderBlock {HTML} at (0,0) size 800x600
    5     RenderBody {BODY} at (8,8) size 784x576
    6       RenderBlock {P} at (0,0) size 784x18
    7         RenderInline {A} at (0,0) size 60x18 [color=#0000EE]
    8           RenderText {#text} at (0,0) size 60x18
    9             text run at (0,0) width 60: "bug 8626"
    10         RenderText {#text} at (60,0) size 363x18
    11           text run at (60,0) width 8: ": "
    12           text run at (68,0) width 355: "Strict mode erroneously triggered by a broken comment."
    13       RenderBlock {P} at (0,34) size 784x18 [color=#00FF00]
    14         RenderText {#text} at (0,0) size 642x18
    15           text run at (0,0) width 642: "This text should be green, not black (CSS color values not beginning with '#' are OK in quirks mode)."
     5    RenderBody {BODY} at (8,8) size 784x584
  • trunk/LayoutTests/platform/mac/fast/parser/comment-in-style-expected.txt

    r34787 r61234  
    44  RenderBlock {HTML} at (0,0) size 800x600
    55    RenderBody {BODY} at (8,8) size 784x571
    6       RenderBlock {H1} at (0,0) size 784x37 [bgcolor=#008000]
     6      RenderBlock (anonymous) at (0,0) size 784x18
     7        RenderText {#text} at (0,0) size 538x18
     8          text run at (0,0) width 538: "--> */ h1 { background-color: green; } /* This comment should be part of the style. */"
     9        RenderText {#text} at (0,0) size 0x0
     10        RenderText {#text} at (0,0) size 0x0
     11        RenderText {#text} at (0,0) size 0x0
     12      RenderBlock {H1} at (0,39) size 784x37
    713        RenderText {#text} at (0,0) size 581x37
    814          text run at (0,0) width 581: "This text should have a green background."
  • trunk/LayoutTests/platform/mac/fast/parser/parseCommentsInTitles-expected.txt

    r30635 r61234  
     1ALERT: You should not see this.
    12layer at (0,0) size 800x600
    23  RenderView at (0,0) size 800x600
     
    45  RenderBlock {HTML} at (0,0) size 800x600
    56    RenderBody {BODY} at (8,8) size 784x584
    6       RenderText {#text} at (0,0) size 47x18
    7         text run at (0,0) width 47: "Fix for "
    8       RenderInline {A} at (0,0) size 56x18 [color=#0000EE]
    9         RenderText {#text} at (47,0) size 56x18
    10           text run at (47,0) width 56: "4921692"
    11       RenderText {#text} at (103,0) size 415x18
    12         text run at (103,0) width 415: ". We should NOT run the script nested in the comment in the title."
     7      RenderText {#text} at (0,0) size 23x18
     8        text run at (0,0) width 23: "--> "
    139      RenderText {#text} at (0,0) size 0x0
    1410      RenderText {#text} at (0,0) size 0x0
     11      RenderText {#text} at (23,0) size 47x18
     12        text run at (23,0) width 47: "Fix for "
     13      RenderInline {A} at (0,0) size 56x18 [color=#0000EE]
     14        RenderText {#text} at (70,0) size 56x18
     15          text run at (70,0) width 56: "4921692"
     16      RenderText {#text} at (126,0) size 415x18
     17        text run at (126,0) width 415: ". We should NOT run the script nested in the comment in the title."
     18      RenderText {#text} at (0,0) size 0x0
     19      RenderText {#text} at (0,0) size 0x0
  • trunk/LayoutTests/platform/mac/fast/text/international/bidi-linebreak-001-expected.txt

    r42379 r61234  
    11layer at (0,0) size 800x600
    22  RenderView at (0,0) size 800x600
    3 layer at (0,0) size 800x176
    4   RenderBlock {HTML} at (0,0) size 800x176
    5     RenderBody {BODY} at (8,16) size 784x144
     3layer at (0,0) size 800x157
     4  RenderBlock {HTML} at (0,0) size 800x157
     5    RenderBody {BODY} at (8,16) size 784x125
    66      RenderBlock {P} at (0,0) size 784x36
    77        RenderText {#text} at (0,0) size 762x36
     
    1313          text run at (292,1) width 37 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
    1414          text run at (329,1) width 177: "\", separated with line-break."
    15       RenderBlock {P} at (0,87) size 784x57
    16         RenderText {#text} at (0,1) size 37x56
     15      RenderBlock {P} at (0,87) size 784x38
     16        RenderText {#text} at (0,1) size 73x37
    1717          text run at (0,1) width 37 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
    1818          text run at (37,1) width 0: " "
    19           text run at (0,20) width 37 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
    20           text run at (37,20) width 0: " "
    21           text run at (0,39) width 37 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
     19          text run at (0,20) width 73 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}\x{D}\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
  • trunk/LayoutTests/platform/mac/fast/text/international/bidi-linebreak-002-expected.txt

    r42379 r61234  
    1414          text run at (329,1) width 149: "\", separated with space."
    1515      RenderBlock {P} at (0,87) size 784x19
    16         RenderText {#text} at (0,1) size 119x18
    17           text run at (0,1) width 119 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4} \x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4} \x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
     16        RenderText {#text} at (0,1) size 115x18
     17          text run at (0,1) width 115 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4} \x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}\x{D}\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
  • trunk/LayoutTests/platform/mac/fast/text/international/bidi-linebreak-003-expected.txt

    r42379 r61234  
    1414          text run at (329,1) width 149: "\", separated with space."
    1515      RenderBlock {P} at (0,87) size 784x19
    16         RenderText {#text} at (0,1) size 119x18
    17           text run at (0,1) width 119 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4} \x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4} \x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
     16        RenderText {#text} at (0,1) size 115x18
     17          text run at (0,1) width 115 RTL: "\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4} \x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}\x{D}\x{5E9}\x{5D5}\x{5BC}\x{5E8}\x{5D4}"
  • trunk/LayoutTests/platform/mac/fast/text/international/hindi-whitespace-expected.txt

    r45253 r61234  
    1313          text run at (0,19) width 491: "paragraphs. In the third paragraphs, it'll be shown three times in separate lines."
    1414      RenderBlock {P} at (0,105) size 784x19
    15         RenderText {#text} at (0,1) size 138x18
    16           text run at (0,1) width 138: "1. \x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902} \x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902} \x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}"
     15        RenderText {#text} at (0,1) size 134x18
     16          text run at (0,1) width 134: "1. \x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902} \x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}\x{D}\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}"
    1717      RenderBlock {P} at (0,140) size 784x19
    18         RenderText {#text} at (0,1) size 138x18
    19           text run at (0,1) width 138: "2. \x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902} \x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902} \x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}"
    20       RenderBlock {P} at (0,175) size 784x75
    21         RenderText {#text} at (0,0) size 38x75
     18        RenderText {#text} at (0,1) size 134x18
     19          text run at (0,1) width 134: "2. \x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902} \x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}\x{D}\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}"
     20      RenderBlock {P} at (0,175) size 784x56
     21        RenderText {#text} at (0,0) size 76x56
    2222          text run at (0,0) width 12: "3."
    2323          text run at (12,0) width 0: " "
    2424          text run at (0,19) width 38: "\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}"
    2525          text run at (38,19) width 0: " "
    26           text run at (0,38) width 38: "\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}"
    27           text run at (38,38) width 0: " "
    28           text run at (0,57) width 38: "\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}"
     26          text run at (0,38) width 76: "\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}\x{D}\x{935}\x{93F}\x{937}\x{92F}\x{94B}\x{902}"
  • trunk/LayoutTests/platform/mac/fast/text/stripNullFromText-expected.txt

    r30635 r61234  
    44  RenderBlock {HTML} at (0,0) size 800x600
    55    RenderBody {BODY} at (8,8) size 784x584
    6       RenderBlock {DIV} at (0,0) size 784x2 [border: (1px solid #FF0000)]
     6      RenderBlock {DIV} at (0,0) size 784x21 [border: (1px solid #FF0000)]
     7        RenderText {#text} at (1,2) size 16x18
     8          text run at (1,2) width 16: "\x{FFFD}"
  • trunk/LayoutTests/platform/mac/fast/tokenizer/missing-title-end-tag-1-expected.txt

    r25970 r61234  
    44  RenderBlock {HTML} at (0,0) size 800x600
    55    RenderBody {BODY} at (8,8) size 784x584
    6       RenderBlock {DIV} at (0,0) size 784x36
    7         RenderText {#text} at (0,0) size 773x36
    8           text run at (0,0) width 326: "This document is missing its </title> tag in its head. "
    9           text run at (326,0) width 447: "The tokenizer should retokenize this document after consuming all of it"
    10           text run at (0,18) width 504: "looking for the missing end tag, then let the parser clean up the missing tag. See "
    11         RenderInline {A} at (0,0) size 120x18 [color=#0000EE]
    12           RenderText {#text} at (504,18) size 120x18
    13             text run at (504,18) width 120: "Bugzilla Bug 3905"
    14         RenderText {#text} at (624,18) size 4x18
    15           text run at (624,18) width 4: "."
  • trunk/LayoutTests/platform/mac/fast/tokenizer/missing-title-end-tag-2-expected.txt

    r25970 r61234  
    44  RenderBlock {HTML} at (0,0) size 800x600
    55    RenderBody {BODY} at (8,8) size 784x584
    6       RenderBlock {DIV} at (0,0) size 784x36
    7         RenderText {#text} at (0,0) size 775x36
    8           text run at (0,0) width 328: "This document is missing its </title> tag in its body. "
    9           text run at (328,0) width 447: "The tokenizer should retokenize this document after consuming all of it"
    10           text run at (0,18) width 504: "looking for the missing end tag, then let the parser clean up the missing tag. See "
    11         RenderInline {A} at (0,0) size 120x18 [color=#0000EE]
    12           RenderText {#text} at (504,18) size 120x18
    13             text run at (504,18) width 120: "Bugzilla Bug 3905"
    14         RenderText {#text} at (624,18) size 4x18
    15           text run at (624,18) width 4: "."
  • trunk/LayoutTests/platform/mac/fast/tokenizer/script_extra_close-expected.txt

    r25970 r61234  
    88        text run at (0,0) width 55: "TEST...\x{9}"
    99      RenderText {#text} at (0,0) size 0x0
    10       RenderText {#text} at (0,0) size 0x0
    1110      RenderText {#text} at (55,0) size 232x18
    1211        text run at (55,0) width 69: "PASSED. "
  • trunk/LayoutTests/platform/mac/tables/mozilla/images/adforce_imgis_com-expected.txt

    r30635 r61234  
    44  RenderBlock {HTML} at (0,0) size 800x600
    55    RenderBody {BODY} at (8,8) size 784x584
    6       RenderText {#text} at (0,0) size 665x18
    7         text run at (0,0) width 665: "GIF89a\x{D4}\x{1}<\x{20AC}\x{7F}!\x{FF}\x{B}NETSCAPE2.0\x{3}\x{1}!\x{F9}\x{4}\x{4}<,\x{D4}\x{1}<\x{201A}\x{7F}\x{FF}\x{FF}\x{FF}\x{FF}\x{FF}\x{DF}\x{DF}\x{DF}\x{BF}\x{BF}\x{BF}\x{7F}\x{7F}\x{7F}\x{3}\x{FF}8\x{BA}\x{DC}\x{FE}0\x{CA}I\x{AB}\x{BD}8\x{EB}\x{CD}\x{BB}\x{FF}`(\x{17D}di*\x{C6} \x{AC}l\x{EB}\x{BE}p,\x{CF}tm\x{DF}x\x{AE}\x{EF}|\x{EF}\x{FF}\x{C0} pH,"
     6      RenderText {#text} at (0,1) size 61x18
     7        text run at (0,1) width 61: "GIF89a\x{D4}\x{1}"
     8      RenderText {#text} at (61,1) size 326x18
     9        text run at (61,1) width 326: "<\x{FFFD}\x{20AC}\x{FFFD}\x{FFFD}\x{FFFD}\x{FFFD}\x{7F}\x{FFFD}\x{FFFD}\x{FFFD}!\x{FF}\x{B}NETSCAPE2.0\x{3}\x{1}\x{FFFD}\x{FFFD}\x{FFFD}!\x{F9}\x{4}\x{4}"
     10      RenderText {#text} at (387,1) size 137x18
     11        text run at (387,1) width 137: "<\x{FFFD}\x{FFFD}\x{FFFD},\x{FFFD}\x{FFFD}\x{FFFD}\x{FFFD}\x{D4}\x{1}"
     12      RenderText {#text} at (524,1) size 666x37
     13        text run at (524,1) width 142: "<\x{FFFD}\x{201A}\x{FFFD}\x{FFFD}\x{7F}\x{FF}\x{FF}\x{FFFD}\x{FF}\x{FF}\x{FF}\x{DF}\x{DF}\x{DF}"
     14        text run at (0,20) width 447: "\x{BF}\x{BF}\x{BF}\x{7F}\x{7F}\x{7F}\x{FFFD}\x{FFFD}\x{FFFD}\x{FFFD}\x{FFFD}\x{FFFD}\x{3}\x{FF}8\x{BA}\x{DC}\x{FE}0\x{CA}I\x{AB}\x{BD}8\x{EB}\x{CD}\x{BB}\x{FF}`(\x{17D}di*\x{C6} \x{AC}l\x{EB}\x{BE}p,\x{CF}tm\x{DF}x\x{AE}\x{EF}|\x{EF}\x{FF}\x{C0} pH,"
  • trunk/LayoutTests/webarchive/archive-empty-frame-dom-expected.webarchive

    r43215 r61234  
    66        <dict>
    77                <key>WebResourceData</key>
    8                 <string>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt;&lt;html&gt;&lt;head&gt;
     8                <string>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt;&lt;html&gt;&lt;head&gt;
    99&lt;title&gt;Empty iFrame causes archive exception&lt;/title&gt;
    1010&lt;script&gt;
  • trunk/WebCore/ChangeLog

    r61232 r61234  
     12010-06-15  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Enable HTML5 lexer
     6        https://bugs.webkit.org/show_bug.cgi?id=40650
     7
     8        * page/Settings.cpp:
     9        (WebCore::Settings::Settings):
     10
    1112010-06-15  Mark Rowe  <mrowe@apple.com>
    212
  • trunk/WebCore/page/Settings.cpp

    r60841 r61234  
    133133    , m_loadDeferringEnabled(true)
    134134    , m_tiledBackingStoreEnabled(false)
    135     , m_html5ParserEnabled(false)
     135    , m_html5ParserEnabled(true)
    136136    , m_paginateDuringLayoutEnabled(false)
    137137{
  • trunk/WebKitTools/ChangeLog

    r61232 r61234  
     12010-06-15  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Enable HTML5 lexer
     6        https://bugs.webkit.org/show_bug.cgi?id=40650
     7
     8        * DumpRenderTree/mac/DumpRenderTree.mm:
     9        (initializeGlobalsFromCommandLineOptions):
     10
    1112010-06-10  Yuzo Fujishima  <yuzo@google.com>
    212
  • trunk/WebKitTools/DumpRenderTree/mac/DumpRenderTree.mm

    r60618 r61234  
    137137static int dumpTree = YES;
    138138static int forceComplexText;
    139 static int useHTML5Parser;
     139static int useHTML5Parser = YES;
    140140static BOOL printSeparators;
    141141static RetainPtr<CFStringRef> persistentUserStyleSheetLocation;
     
    563563        {"threaded", no_argument, &threaded, YES},
    564564        {"complex-text", no_argument, &forceComplexText, YES},
    565         {"html5-parser", no_argument, &useHTML5Parser, YES},
     565        {"legacy-parser", no_argument, &useHTML5Parser, NO},
    566566        {NULL, 0, NULL, 0}
    567567    };
Note: See TracChangeset for help on using the changeset viewer.