Title: [166181] branches/safari-537.75-branch/Source/WebCore
Revision
166181
Author
[email protected]
Date
2014-03-24 10:51:27 -0700 (Mon, 24 Mar 2014)

Log Message

Remove a commented line of code introduced by r166104.

Modified Paths

Diff

Modified: branches/safari-537.75-branch/Source/WebCore/ChangeLog (166180 => 166181)


--- branches/safari-537.75-branch/Source/WebCore/ChangeLog	2014-03-24 17:38:28 UTC (rev 166180)
+++ branches/safari-537.75-branch/Source/WebCore/ChangeLog	2014-03-24 17:51:27 UTC (rev 166181)
@@ -1,3 +1,15 @@
+2014-03-24  Matthew Hanson  <[email protected]>
+
+        Remove a commented line of code introduced by r166104.
+
+        Reviewed by Babak Shafiei.
+
+        A line was commented out when it should have been deleted. This patch
+        corrects that oversight.
+
+        * bindings/js/JSDocumentCustom.cpp:
+        (WebCore::JSDocument::location):
+
 2014-03-22  Matthew Hanson  <[email protected]>
 
         Finish merge of r160065. The changes from Source/WebCore/rendering/RenderView.cpp were incorrectly

Modified: branches/safari-537.75-branch/Source/WebCore/bindings/js/JSDocumentCustom.cpp (166180 => 166181)


--- branches/safari-537.75-branch/Source/WebCore/bindings/js/JSDocumentCustom.cpp	2014-03-24 17:38:28 UTC (rev 166180)
+++ branches/safari-537.75-branch/Source/WebCore/bindings/js/JSDocumentCustom.cpp	2014-03-24 17:51:27 UTC (rev 166181)
@@ -52,7 +52,6 @@
 JSValue JSDocument::location(ExecState* exec) const
 {
     RefPtr<Frame> frame = impl()->frame();
-    //RefPtr<Frame> frame = static_cast<Document*>(impl())->frame();
 
     if (!frame)
         return jsNull();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to