Home | History | Annotate | Download | only in page

Lines Matching refs:url

321         const KURL& currentURL = m_mainFrame->loader()->url();
322 const KURL& newURL = item->url();
568 // text instead of loading the URL ourselves.
569 KURL url = m_settings->userStyleSheetLocation();
570 if (url.isLocalFile())
571 m_userStyleSheetPath = url.fileSystemPath();
581 if (url.protocolIs("data") && url.string().startsWith("data:text/css;charset=utf-8;base64,")) {
585 Vector<char> encodedData(url.string().length() - prefixLength);
586 for (unsigned i = prefixLength; i < url.string().length(); ++i)
587 encodedData[i - prefixLength] = static_cast<char>(url.string()[i]);