Changeset 25010 in webkit


Ignore:
Timestamp:
Aug 11, 2007, 10:18:57 AM (18 years ago)
Author:
darin
Message:

LayoutTests:

Reviewed by Antti.

  • test for <rdar://problem/5266535> REGRESSION: <img> inside <map> no longer allowed in strict mode (breaks chemicalelements.com)
  • fast/parser/strict-img-in-map-expected.txt: Added.
  • fast/parser/strict-img-in-map.html: Added.

WebCore:

Reviewed by Antti.

  • fix <rdar://problem/5266535> REGRESSION: <img> inside <map> no longer allowed in strict mode (breaks chemicalelements.com)

Test: fast/parser/strict-img-in-map.html

  • html/HTMLMapElement.cpp: (WebCore::HTMLMapElement::checkDTD): Removed FIXME saying this code is strange, since this code matches the HTML 4 specification almost exactly. Made <img> elements allowed even in strict mode and added small comments to clarify what comes from the DTD and what is non-standard.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r25008 r25010  
     12007-08-11  Darin Adler  <darin@apple.com>
     2
     3        Reviewed by Antti.
     4
     5        - test for <rdar://problem/5266535> REGRESSION: <img> inside <map> no longer allowed in strict mode
     6          (breaks chemicalelements.com)
     7
     8        * fast/parser/strict-img-in-map-expected.txt: Added.
     9        * fast/parser/strict-img-in-map.html: Added.
     10
    1112007-08-11  Andrew Wellington  <proton@wiretapped.net>
    212
  • trunk/WebCore/ChangeLog

    r25009 r25010  
     12007-08-11  Darin Adler  <darin@apple.com>
     2
     3        Reviewed by Antti.
     4
     5        - fix <rdar://problem/5266535> REGRESSION: <img> inside <map> no longer allowed in strict mode
     6          (breaks chemicalelements.com)
     7
     8        Test: fast/parser/strict-img-in-map.html
     9
     10        * html/HTMLMapElement.cpp: (WebCore::HTMLMapElement::checkDTD): Removed FIXME saying this
     11        code is strange, since this code matches the HTML 4 specification almost exactly. Made
     12        <img> elements allowed even in strict mode and added small comments to clarify what comes
     13        from the DTD and what is non-standard.
     14
    1152007-08-11  Holger Hans Peter Freyther  <zecke@selfish.org>
    216
     
    418
    519        GdkEventKey::string is not supposed to be used. The length
    6         of this string is zero for non ascii charachters. Use the
     20        of this string is zero for non ascii characters. Use the
    721        gdk_unicode_to_keyval to convert the keyval to a UChar and construct
    822        a String. This change makes it possible to input non ascii
    9         charachters.
    10 
     23        characters.
    1124
    1225        * platform/gdk/KeyEventGdk.cpp:
  • trunk/WebCore/html/HTMLMapElement.cpp

    r19685 r25010  
    1 /**
    2  * This file is part of the DOM implementation for KDE.
    3  *
     1/*
    42 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
    53 *           (C) 1999 Antti Koivisto (koivisto@kde.org)
    6  * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc.
     4 * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved.
    75 *
    86 * This library is free software; you can redistribute it and/or
     
    4947bool HTMLMapElement::checkDTD(const Node* newChild)
    5048{
    51     // FIXME: This seems really odd, allowing only blocks inside map elements.
    52     return newChild->hasTagName(areaTag) || newChild->hasTagName(scriptTag) || inBlockTagList(newChild)
    53         || (!document()->inStrictMode() && newChild->hasTagName(imgTag));
     49    return inBlockTagList(newChild) || newChild->hasTagName(areaTag) // HTML 4 DTD
     50        || newChild->hasTagName(scriptTag) || newChild->hasTagName(imgTag); // extensions
    5451}
    5552
Note: See TracChangeset for help on using the changeset viewer.