Changeset 19472 in webkit


Ignore:
Timestamp:
Feb 7, 2007 12:08:01 PM (17 years ago)
Author:
brmorris
Message:

yadavall, Reviewed by Zalan

DESC: Unclosed object tag causing problem MPAK-6XC86M
http://bugs.webkit.org/show_bug.cgi?id=12680

Location:
S60/branches/3.1m/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • S60/branches/3.1m/WebCore/ChangeLog

    r19456 r19472  
     1yadavall, Reviewed by Zalan Bujtas.
     2        DESC: Unclosed object tag causing problem MPAK-6XC86M
     3        http://bugs.webkit.org/show_bug.cgi?id=12680
     4
     5        WARNING: NO TEST CASES ADDED OR CHANGED
     6
     7        * khtml/html/htmltokenizer.cpp:
     8        (khtml::HTMLTokenizer::parseTag):
     9
    110yaharon, reviewed by zalan.
    211        DESC: [S60] BrowserNG: Betsson.com crashes browser (MLIO-6XWP2K)
  • S60/branches/3.1m/WebCore/khtml/html/htmltokenizer.cpp

    r18938 r19472  
    12081208                        // being bogus HTML.  They do not honor the "/" for other tags.  This behavior
    12091209                        // also deviates from WinIE, but in this case we'll just copy Moz and Opera.
     1210#ifdef NOKIA_CHANGES
     1211                        if ((currToken.id == ID_SCRIPT || currToken.id == ID_OBJECT) && curchar == '>' &&
     1212#else
    12101213                        if (currToken.id == ID_SCRIPT && curchar == '>' &&
     1214#endif
    12111215                            attrName == "/")
    12121216                            currToken.flat = true;
     
    15391543                if (beginTag) {
    15401544#ifdef NOKIA_CHANGES
    1541                     if(slashAtEndOfTag) 
    1542                          break;   
     1545                    if(slashAtEndOfTag)
     1546                         break;
    15431547#endif
    15441548                    searchStopper = titleEnd;
Note: See TracChangeset for help on using the changeset viewer.