Title: [89529] trunk/Source/WebKit/chromium
- Revision
- 89529
- Author
- [email protected]
- Date
- 2011-06-22 21:54:18 -0700 (Wed, 22 Jun 2011)
Log Message
2011-06-22 Ryosuke Niwa <[email protected]>
Reviewed by Kent Tamura.
[chromium] Remove calls to Position::deprecatedNode
https://bugs.webkit.org/show_bug.cgi?id=63226
Call containerNode instead of deprecatedNode.
* src/WebViewImpl.cpp:
(WebKit::WebViewImpl::textInputType):
Modified Paths
Diff
Modified: trunk/Source/WebKit/chromium/ChangeLog (89528 => 89529)
--- trunk/Source/WebKit/chromium/ChangeLog 2011-06-23 04:19:31 UTC (rev 89528)
+++ trunk/Source/WebKit/chromium/ChangeLog 2011-06-23 04:54:18 UTC (rev 89529)
@@ -1,3 +1,15 @@
+2011-06-22 Ryosuke Niwa <[email protected]>
+
+ Reviewed by Kent Tamura.
+
+ [chromium] Remove calls to Position::deprecatedNode
+ https://bugs.webkit.org/show_bug.cgi?id=63226
+
+ Call containerNode instead of deprecatedNode.
+
+ * src/WebViewImpl.cpp:
+ (WebKit::WebViewImpl::textInputType):
+
2011-06-22 Adam Barth <[email protected]>
Reviewed by Darin Fisher.
Modified: trunk/Source/WebKit/chromium/src/WebViewImpl.cpp (89528 => 89529)
--- trunk/Source/WebKit/chromium/src/WebViewImpl.cpp 2011-06-23 04:19:31 UTC (rev 89528)
+++ trunk/Source/WebKit/chromium/src/WebViewImpl.cpp 2011-06-23 04:54:18 UTC (rev 89529)
@@ -1453,7 +1453,7 @@
if (!selection)
return type;
- const Node* node = selection->start().deprecatedNode();
+ const Node* node = selection->start().containerNode();
if (!node)
return type;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes