Title: [164509] trunk/Source/WebCore
Revision
164509
Author
benja...@webkit.org
Date
2014-02-21 15:44:32 -0800 (Fri, 21 Feb 2014)

Log Message

Fix WebCore's internals after r164505

Patch by Benjamin Poulain <bpoul...@apple.com> on 2014-02-21

* testing/Internals.cpp:
(WebCore::Internals::findEditingDeleteButton): The call became ambiguous after r164505.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (164508 => 164509)


--- trunk/Source/WebCore/ChangeLog	2014-02-21 23:38:09 UTC (rev 164508)
+++ trunk/Source/WebCore/ChangeLog	2014-02-21 23:44:32 UTC (rev 164509)
@@ -1,3 +1,10 @@
+2014-02-21  Benjamin Poulain  <bpoul...@apple.com>
+
+        Fix WebCore's internals after r164505
+
+        * testing/Internals.cpp:
+        (WebCore::Internals::findEditingDeleteButton): The call became ambiguous after r164505.
+
 2014-02-21  Joseph Pecoraro  <pecor...@apple.com>
 
         Web Inspector: JSContext inspection should report exceptions in the console

Modified: trunk/Source/WebCore/testing/Internals.cpp (164508 => 164509)


--- trunk/Source/WebCore/testing/Internals.cpp	2014-02-21 23:38:09 UTC (rev 164508)
+++ trunk/Source/WebCore/testing/Internals.cpp	2014-02-21 23:44:32 UTC (rev 164509)
@@ -1316,7 +1316,7 @@
     updateEditorUINowIfScheduled();
 
     // FIXME: We shouldn't pollute the id namespace with this name.
-    return document->getElementById("WebKit-Editing-Delete-Button");
+    return document->getElementById(String(ASCIILiteral("WebKit-Editing-Delete-Button")));
 }
 
 bool Internals::hasSpellingMarker(int from, int length, ExceptionCode&)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to