Andrew Eikum : mshtml: Implement IHTMLLocation::get_hostname.

Alexandre Julliard julliard at winehq.org
Fri Oct 16 11:26:08 CDT 2009


Module: wine
Branch: master
Commit: fc3808e55351229d56ee1acdda82f5e6fdcca148
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=fc3808e55351229d56ee1acdda82f5e6fdcca148

Author: Andrew Eikum <aeikum at codeweavers.com>
Date:   Thu Oct 15 16:17:39 2009 -0500

mshtml: Implement IHTMLLocation::get_hostname.

---

 dlls/mshtml/htmllocation.c       |   20 ++++++++++++++++++--
 dlls/mshtml/tests/htmllocation.c |   12 ++++++------
 2 files changed, 24 insertions(+), 8 deletions(-)

diff --git a/dlls/mshtml/htmllocation.c b/dlls/mshtml/htmllocation.c
index badf111..e21ec76 100644
--- a/dlls/mshtml/htmllocation.c
+++ b/dlls/mshtml/htmllocation.c
@@ -274,12 +274,28 @@ static HRESULT WINAPI HTMLLocation_put_hostname(IHTMLLocation *iface, BSTR v)
 static HRESULT WINAPI HTMLLocation_get_hostname(IHTMLLocation *iface, BSTR *p)
 {
     HTMLLocation *This = HTMLLOCATION_THIS(iface);
-    FIXME("(%p)->(%p)\n", This, p);
+    URL_COMPONENTSW url = {sizeof(URL_COMPONENTSW)};
+    HRESULT hres;
+
+    TRACE("(%p)->(%p)\n", This, p);
 
     if(!p)
         return E_POINTER;
 
-    return E_NOTIMPL;
+    url.dwHostNameLength = 1;
+    hres = get_url_components(This, &url);
+    if(FAILED(hres))
+        return hres;
+
+    if(!url.dwHostNameLength){
+        *p = NULL;
+        return S_OK;
+    }
+
+    *p = SysAllocStringLen(url.lpszHostName, url.dwHostNameLength);
+    if(!*p)
+        return E_OUTOFMEMORY;
+    return S_OK;
 }
 
 static HRESULT WINAPI HTMLLocation_put_port(IHTMLLocation *iface, BSTR v)
diff --git a/dlls/mshtml/tests/htmllocation.c b/dlls/mshtml/tests/htmllocation.c
index aaf8ecf..8cd7e1d 100644
--- a/dlls/mshtml/tests/htmllocation.c
+++ b/dlls/mshtml/tests/htmllocation.c
@@ -59,7 +59,7 @@ static const struct location_test http_test = {
             "http://www.winehq.org/?search#hash", FALSE,
             "http:", TRUE,
             "www.winehq.org:80", TRUE,
-            "www.winehq.org", FALSE,
+            "www.winehq.org", TRUE,
             "80", TRUE,
             "", FALSE,
             "?search", FALSE,
@@ -73,7 +73,7 @@ static const struct location_test http_file_test = {
             "http://www.winehq.org/file?search#hash", TRUE,
             "http:", TRUE,
             "www.winehq.org:80", TRUE,
-            "www.winehq.org", FALSE,
+            "www.winehq.org", TRUE,
             "80", TRUE,
             "file", FALSE,
             "?search", FALSE,
@@ -87,7 +87,7 @@ static const struct location_test ftp_test = {
             "ftp://ftp.winehq.org/", TRUE,
             "ftp:", TRUE,
             "ftp.winehq.org:21", TRUE,
-            "ftp.winehq.org", FALSE,
+            "ftp.winehq.org", TRUE,
             "21", TRUE,
             "", FALSE,
             NULL, FALSE,
@@ -101,7 +101,7 @@ static const struct location_test ftp_file_test = {
             "ftp://ftp.winehq.org/file", TRUE,
             "ftp:", TRUE,
             "ftp.winehq.org:21", TRUE,
-            "ftp.winehq.org", FALSE,
+            "ftp.winehq.org", TRUE,
             "21", TRUE,
             "file", FALSE,
             NULL, FALSE,
@@ -115,7 +115,7 @@ static const struct location_test file_test = {
             "file:///C:/windows/win.ini", FALSE,
             "file:", TRUE,
             NULL, TRUE,
-            NULL, FALSE,
+            NULL, TRUE,
             "", TRUE,
             "C:\\windows\\win.ini", TRUE,
             NULL, FALSE,
@@ -219,7 +219,7 @@ static void test_hostname(IHTMLLocation *loc, const struct location_test *test)
             test->name, E_POINTER, hres);
 
     hres = IHTMLLocation_get_hostname(loc, &str);
-    todo_wine ok(hres == S_OK, "%s: get_hostname failed: 0x%08x\n", test->name, hres);
+    ok(hres == S_OK, "%s: get_hostname failed: 0x%08x\n", test->name, hres);
     if(hres == S_OK){
         if(test->hostname_ok)
             ok(str_eq_wa(str, test->hostname),




More information about the wine-cvs mailing list