[webkit-changes] cvs commit: WebCore/khtml/html html_elementimpl.cpp
Darin
darin at opensource.apple.com
Tue Jul 19 11:43:23 PDT 2005
darin 05/07/19 11:43:23
Modified: . ChangeLog
khtml/html html_elementimpl.cpp
Log:
Reviewed by Dave Hyatt.
- fixed broken bi-di layout tests: the "dir" attribute was broken
* khtml/html/html_elementimpl.cpp: (HTMLElementImpl::parseMappedAttribute):
Fix one case that said "direction" where it should say "dir".
Revision Changes Path
1.4440 +9 -0 WebCore/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebCore/ChangeLog,v
retrieving revision 1.4439
retrieving revision 1.4440
diff -u -r1.4439 -r1.4440
--- ChangeLog 19 Jul 2005 18:35:49 -0000 1.4439
+++ ChangeLog 19 Jul 2005 18:43:19 -0000 1.4440
@@ -1,5 +1,14 @@
2005-07-19 Darin Adler <darin at apple.com>
+ Reviewed by Dave Hyatt.
+
+ - fixed broken bi-di layout tests: the "dir" attribute was broken
+
+ * khtml/html/html_elementimpl.cpp: (HTMLElementImpl::parseMappedAttribute):
+ Fix one case that said "direction" where it should say "dir".
+
+2005-07-19 Darin Adler <darin at apple.com>
+
- updated results of two tests that reflect properly-preserved namespace prefixes for attributes
* layout-tests/fast/dom/dom-parse-serialize-display-expected.txt:
1.91 +1 -1 WebCore/khtml/html/html_elementimpl.cpp
Index: html_elementimpl.cpp
===================================================================
RCS file: /cvs/root/WebCore/khtml/html/html_elementimpl.cpp,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- html_elementimpl.cpp 18 Jul 2005 21:52:24 -0000 1.90
+++ html_elementimpl.cpp 19 Jul 2005 18:43:23 -0000 1.91
@@ -147,7 +147,7 @@
setTabIndex(indexstring.toInt());
} else if (attr->name() == HTMLAttributes::lang()) {
// FIXME: Implement
- } else if (attr->name() == HTMLAttributes::direction()) {
+ } else if (attr->name() == HTMLAttributes::dir()) {
addCSSProperty(attr, CSS_PROP_DIRECTION, attr->value());
addCSSProperty(attr, CSS_PROP_UNICODE_BIDI, CSS_VAL_EMBED);
}
More information about the webkit-changes
mailing list