Bug 85131

Summary: [GTK] DRT needs an implementation of layoutTestController.setDomainRelaxationForbiddenForURLScheme
Product: WebKit Reporter: Sudarsana Nagineni (babu) <naginenis>
Component: WebKitGTKAssignee: Sudarsana Nagineni (babu) <naginenis>
Status: RESOLVED FIXED    
Severity: Normal CC: mrobinson, webkit.review.bot
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
mrobinson: review-
Patch none

Description Sudarsana Nagineni (babu) 2012-04-28 02:27:15 PDT
Implement layoutTestController.setDomainRelaxationForbiddenForURLScheme in order to unskip the following test.
http/tests/security/setDomainRelaxationForbiddenForURLScheme.html
Comment 1 Sudarsana Nagineni (babu) 2012-04-28 03:14:02 PDT
Created attachment 139348 [details]
Patch

Implement setDomainRelaxationForbiddenForURLScheme
Comment 2 Martin Robinson 2012-04-28 09:10:57 PDT
Comment on attachment 139348 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=139348&action=review

Looks good, but there's one change I suggest...

> Source/WebKit/gtk/WebCoreSupport/DumpRenderTreeSupportGtk.cpp:916
> +    size_t bufferSize = JSStringGetMaximumUTF8CStringSize(scheme);
> +    GOwnPtr<gchar> schemeBuffer(static_cast<gchar*>(g_malloc(bufferSize)));
> +    JSStringGetUTF8CString(scheme, schemeBuffer.get(), bufferSize);
> +
> +    SchemeRegistry::setDomainRelaxationForbiddenForURLScheme(forbidden, String::fromUTF8(schemeBuffer.get()));

Most of the DumpRenderTreeSupportGtk method use char* instead of JSString. You should do the conversion in LayoutTestController.
Comment 3 Sudarsana Nagineni (babu) 2012-04-29 04:35:26 PDT
(In reply to comment #2)
> Looks good, but there's one change I suggest...
> 
> > Source/WebKit/gtk/WebCoreSupport/DumpRenderTreeSupportGtk.cpp:916
> > +    size_t bufferSize = JSStringGetMaximumUTF8CStringSize(scheme);
> > +    GOwnPtr<gchar> schemeBuffer(static_cast<gchar*>(g_malloc(bufferSize)));
> > +    JSStringGetUTF8CString(scheme, schemeBuffer.get(), bufferSize);
> > +
> > +    SchemeRegistry::setDomainRelaxationForbiddenForURLScheme(forbidden, String::fromUTF8(schemeBuffer.get()));
> 
> Most of the DumpRenderTreeSupportGtk method use char* instead of JSString. You should do the conversion in LayoutTestController.

Thanks for the review Martin. I will make this change.
Comment 4 Sudarsana Nagineni (babu) 2012-04-29 04:38:28 PDT
Created attachment 139399 [details]
Patch

Fixed review comment #2.
Comment 5 WebKit Review Bot 2012-04-29 08:24:29 PDT
Comment on attachment 139399 [details]
Patch

Clearing flags on attachment: 139399

Committed r115597: <http://trac.webkit.org/changeset/115597>
Comment 6 WebKit Review Bot 2012-04-29 08:24:33 PDT
All reviewed patches have been landed.  Closing bug.