Title: [101076] trunk
- Revision
- 101076
- Author
- [email protected]
- Date
- 2011-11-23 06:12:12 -0800 (Wed, 23 Nov 2011)
Log Message
Set right default value to baseURL in LayoutTestController::queueLoadHTMLString.
https://bugs.webkit.org/show_bug.cgi?id=72950
Reviewed by Tony Chang.
Tools:
* DumpRenderTree/chromium/LayoutTestController.cpp:
(LayoutTestController::queueLoadHTMLString):
LayoutTests:
* platform/chromium/test_expectations.txt:
Modified Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (101075 => 101076)
--- trunk/LayoutTests/ChangeLog 2011-11-23 14:09:40 UTC (rev 101075)
+++ trunk/LayoutTests/ChangeLog 2011-11-23 14:12:12 UTC (rev 101076)
@@ -1,3 +1,12 @@
+2011-11-23 Johnny Ding <[email protected]>
+
+ Set right default value to baseURL in LayoutTestController::queueLoadHTMLString.
+ https://bugs.webkit.org/show_bug.cgi?id=72950
+
+ Reviewed by Tony Chang.
+
+ * platform/chromium/test_expectations.txt:
+
2011-11-23 Cary Clark <[email protected]>
Unreviewed rebaselining: update incorrectly generated baseline images
Modified: trunk/LayoutTests/platform/chromium/test_expectations.txt (101075 => 101076)
--- trunk/LayoutTests/platform/chromium/test_expectations.txt 2011-11-23 14:09:40 UTC (rev 101075)
+++ trunk/LayoutTests/platform/chromium/test_expectations.txt 2011-11-23 14:12:12 UTC (rev 101076)
@@ -2473,7 +2473,6 @@
BUGCR43890 SLOW DEBUG : fast/forms/implicit-submission.html = PASS TEXT
BUG_DRT BUGCR21141 LINUX : fast/forms/select-double-onchange.html = FAIL
BUG_DRT BUGCR21141 LINUX : fast/forms/select-script-onchange.html = FAIL
-BUG_DRT DEBUG : fast/loader/non-deferred-substitute-load.html = CRASH
BUG_DRT : fast/repaint/iframe-scroll-repaint.html = IMAGE
BUG_DRT LINUX : fast/repaint/repaint-across-writing-mode-boundary.html = IMAGE
BUG_DRT LINUX : fast/text/justification-padding-mid-word.html = PASS TEXT
Modified: trunk/Tools/ChangeLog (101075 => 101076)
--- trunk/Tools/ChangeLog 2011-11-23 14:09:40 UTC (rev 101075)
+++ trunk/Tools/ChangeLog 2011-11-23 14:12:12 UTC (rev 101076)
@@ -1,3 +1,13 @@
+2011-11-23 Johnny Ding <[email protected]>
+
+ Set right default value to baseURL in LayoutTestController::queueLoadHTMLString.
+ https://bugs.webkit.org/show_bug.cgi?id=72950
+
+ Reviewed by Tony Chang.
+
+ * DumpRenderTree/chromium/LayoutTestController.cpp:
+ (LayoutTestController::queueLoadHTMLString):
+
2011-11-23 Adam Barth <[email protected]>
garden-o-matic should display a message if it can't find results to display
Modified: trunk/Tools/DumpRenderTree/chromium/LayoutTestController.cpp (101075 => 101076)
--- trunk/Tools/DumpRenderTree/chromium/LayoutTestController.cpp 2011-11-23 14:09:40 UTC (rev 101075)
+++ trunk/Tools/DumpRenderTree/chromium/LayoutTestController.cpp 2011-11-23 14:12:12 UTC (rev 101076)
@@ -572,7 +572,7 @@
{
if (arguments.size() > 0 && arguments[0].isString()) {
string html = arguments[0].toString();
- WebURL baseURL;
+ WebURL baseURL(GURL(""));
if (arguments.size() > 1 && arguments[1].isString())
baseURL = WebURL(GURL(arguments[1].toString()));
if (arguments.size() > 2 && arguments[2].isString())
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes