Home | History | Annotate | Download | only in dom

Lines Matching refs:domain

3261 String Document::domain() const
3263 return securityOrigin()->domain();
3273 // Both NS and IE specify that changing the domain is only allowed when
3274 // the new domain is a suffix of the old domain.
3276 // FIXME: We should add logging indicating why a domain was not allowed.
3278 // If the new domain is the same as the old domain, still call
3281 // assigns its current domain using document.domain, the page will
3282 // allow other pages loaded on different ports in the same domain that
3284 if (equalIgnoringCase(domain(), newDomain)) {
3291 int oldLength = domain().length();
3293 // e.g. newDomain = webkit.org (10) and domain() = www.webkit.org (14)
3299 String test = domain();
3306 // Now test is "webkit.org" from domain()