Changeset 25010 in webkit
- Timestamp:
- Aug 11, 2007, 10:18:57 AM (18 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r25008 r25010 1 2007-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 1 11 2007-08-11 Andrew Wellington <proton@wiretapped.net> 2 12 -
trunk/WebCore/ChangeLog
r25009 r25010 1 2007-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 1 15 2007-08-11 Holger Hans Peter Freyther <zecke@selfish.org> 2 16 … … 4 18 5 19 GdkEventKey::string is not supposed to be used. The length 6 of this string is zero for non ascii charac hters. Use the20 of this string is zero for non ascii characters. Use the 7 21 gdk_unicode_to_keyval to convert the keyval to a UChar and construct 8 22 a String. This change makes it possible to input non ascii 9 charachters. 10 23 characters. 11 24 12 25 * 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 /* 4 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 5 3 * (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. 7 5 * 8 6 * This library is free software; you can redistribute it and/or … … 49 47 bool HTMLMapElement::checkDTD(const Node* newChild) 50 48 { 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 54 51 } 55 52
Note:
See TracChangeset
for help on using the changeset viewer.