Changeset 10060 in webkit


Ignore:
Timestamp:
Aug 5, 2005, 1:47:36 PM (20 years ago)
Author:
hyatt
Message:

-added layout test for fix to: <rdar://problem/4161606> JavaScript regular
expressions with certain ranges of Unicode characters cause a crash

Test cases added:

  • layout-tests/fast/js/regexp-big-unicode-ranges-expected.txt: Added.
  • layout-tests/fast/js/regexp-big-unicode-ranges.html: Added.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog-2005-08-23

    r10059 r10060  
    88        * layout-tests/fast/js/regexp-big-unicode-ranges-expected.txt: Added.
    99        * layout-tests/fast/js/regexp-big-unicode-ranges.html: Added.
     10
     112005-08-05  David Hyatt  <hyatt@apple.com>
     12
     13        Make sure that <wbr> and <nobr> are included as residual style tags.
     14       
     15        Reviewed by john
     16
     17        Test cases added: fast/invalid/wbrlink.html
     18
     19        * khtml/css/html4.css:
     20        * khtml/html/htmlparser.cpp:
     21        (HTMLParser::isResidualStyleTag):
    1022
    11232005-08-05  David Hyatt  <hyatt@apple.com>
  • trunk/WebCore/khtml/css/html4.css

    r10012 r10060  
    372372
    373373nobr {
    374     display: inline;
    375374    white-space: nowrap
    376375}
  • trunk/WebCore/khtml/html/htmlparser.cpp

    r10041 r10060  
    935935        residualStyleTags.insert(kbdTag.localName().implementation());
    936936        residualStyleTags.insert(varTag.localName().implementation());
     937        residualStyleTags.insert(nobrTag.localName().implementation());
     938        residualStyleTags.insert(wbrTag.localName().implementation());
    937939    }
    938940   
Note: See TracChangeset for help on using the changeset viewer.