HomeSort by relevance Sort by last modified time
    Searched full:stylesheet (Results 1 - 25 of 3576) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/fast/encoding/
css-charset-default-expected.txt 3 Stylesheet 1 (inherit document charset using xml-stylesheet processing instruction): SU???SS
5 Stylesheet 2 (inherit document charset using link): SU???SS
7 Stylesheet 3 (inherit referring stylesheet charset): SU???SS
9 Stylesheet 4 (inherit referring inline stylesheet charset): SU???SS
11 Stylesheet 5 (inherit document charset using link after document.charset was set): SU???SS
preload-encoding-expected.txt 2 Link rel=stylesheet with charset: SUCCESS
4 Link rel=stylesheet without charset: SUCCESS
css-cached-bom-expected.txt 1 Test that stylesheet with BOM is correctly parsed when loaded from cache. You should see word SUCCESS below.
css-charset-default.xhtml 2 <?xml-stylesheet href="css-charset-inherit-iso-8859-5.css?1" type="text/css"?>
8 <link rel="stylesheet" type="text/css" href="css-charset-inherit-iso-8859-5.css?2"/>
9 <link rel="stylesheet" type="text/css" href="css-charset-import.css"/>
14 <link rel="stylesheet" type="text/css" href="css-charset-inherit-koi-8.css?2"/>
20 <p id="res1">Stylesheet 1 (inherit document charset using xml-stylesheet processing instruction): </p>
21 <p id="res2">Stylesheet 2 (inherit document charset using link): </p>
22 <p id="res3">Stylesheet 3 (inherit referring stylesheet charset): </p>
23 <p id="res4">Stylesheet 4 (inherit referring inline stylesheet charset): </p
    [all...]
css-cached-bom.html 13 <link rel=stylesheet href=resources/utf-16-little-endian.css>
14 <!-- This halts the parsing until stylesheet has been loaded -->
16 <div>Test that stylesheet with BOM is correctly parsed when loaded from cache. You should see word SUCCESS below.</div>
17 <!-- Load the stylesheet to a different frame. This will use a cached copy of the stylesheet. -->
preload-encoding.html 16 <li>Link rel=stylesheet with charset:
20 <li>Link rel=stylesheet without charset:
28 <link rel='stylesheet' href='resources/preloaded-utf-8.css' charset='utf-8'>
34 <link rel='stylesheet' charset='utf-8'>
36 <link rel='stylesheet' href='resources/preloaded-gb2312.css'>
  /external/webkit/Source/WebCore/manual-tests/
preload-scanner-entities.html 2 <link href="non_existent_stylesheet1&ab-" rel="stylesheet">
3 <link href="non_existent_stylesheet2&#xY" rel="stylesheet">
4 <link href="non_existent_stylesheet3&#XY" rel="stylesheet">
6 <p>Check with the web inspector that the page tried to load 3 stylesheet resources (and not more).</p>
textarea-after-stylesheet-link.html 8 <link rel="stylesheet" />
11 <p>Tests: whether &lt;link rel="stylesheet"/&gt; disturbs the display of text in textareas</p>
  /cts/tools/signature-tools/templates/
Common_meta.st 3 <link type="text/css" rel="stylesheet" href="../styles.css" title="Stylesheet"/>
4 <link type="text/css" rel="stylesheet" href="styles.css" title="Stylesheet"/>
6 <link rel="stylesheet" type="text/css" href="http://code.google.com/android/assets/codesite/codesite.css"/>
7 <link rel="stylesheet" type="text/css" href="http://code.google.com/android/assets/codesite/semantic_headers.css"/>
8 <link rel="stylesheet" type="text/css" href="http://code.google.com/android/assets/style.css"/>
  /external/webkit/LayoutTests/fast/dom/beforeload/
remove-link-in-beforeload-listener-expected.txt 1 This page tests that you can correctly remove a stylesheet link element in its beforeload listener without causing a crash.
remove-link-in-beforeload-listener.html 12 <link rel="stylesheet" href="data:text/css">
15 <p>This page tests that you can correctly remove a stylesheet link element in its beforeload listener without causing a crash.</p>
  /external/webkit/LayoutTests/fast/encoding/resources/
css-cached-bom-frame.html 1 <link rel=stylesheet href=utf-16-little-endian.css>
  /external/webkit/Source/WebCore/css/
StyleSheet.cpp 21 #include "StyleSheet.h"
28 StyleSheet::StyleSheet(StyleSheet* parentSheet, const String& originalURL, const KURL& finalURL)
37 StyleSheet::StyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL)
46 StyleSheet::StyleSheet(StyleBase* owner, const String& originalURL, const KURL& finalURL)
55 StyleSheet::~StyleSheet()
    [all...]
  /sdk/eclipse/sites/external/
index.html 8 var stylesheet, xmlFile, cache, doc;
14 stylesheet = document.implementation.createDocument("", "", null);
17 stylesheet.load("web/site.xsl");
22 stylesheet.addEventListener("load", transform, false);
29 stylesheet = new ActiveXObject("msxml2.FreeThreadedDOMDocument.3.0");
30 stylesheet.async = false;
31 stylesheet.load("web/site.xsl");
33 cache.stylesheet = stylesheet;
49 processor.importStylesheet(stylesheet);
    [all...]
  /sdk/eclipse/sites/internal/
index.html 8 var stylesheet, xmlFile, cache, doc;
14 stylesheet = document.implementation.createDocument("", "", null);
17 stylesheet.load("web/site.xsl");
22 stylesheet.addEventListener("load", transform, false);
29 stylesheet = new ActiveXObject("msxml2.FreeThreadedDOMDocument.3.0");
30 stylesheet.async = false;
31 stylesheet.load("web/site.xsl");
33 cache.stylesheet = stylesheet;
49 processor.importStylesheet(stylesheet);
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSStyleSheetCustom.cpp 38 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, StyleSheet* styleSheet)
40 if (!styleSheet)
43 JSDOMWrapper* wrapper = getCachedWrapper(currentWorld(exec), styleSheet);
47 if (styleSheet->isCSSStyleSheet())
48 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, CSSStyleSheet, styleSheet);
50 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, StyleSheet, styleSheet);
59 StyleSheet* sheet = impl();
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/html-values/
dillo 27 stylesheet
  /external/libvpx/examples/includes/geshi/docs/api/
blank.html 4 <link rel="stylesheet" href="media/stylesheet.css" />
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorStylesheetElement.java 26 import org.apache.xalan.templates.Stylesheet;
33 * TransformerFactory for xsl:stylesheet or xsl:transform markup.
35 * @see <a href="http://www.w3.org/TR/xslt#stylesheet-element">stylesheet-element in XSLT Specification</a>
68 Stylesheet stylesheet; local
74 stylesheet = getStylesheetRoot(handler);
83 Stylesheet parent = handler.getStylesheet();
91 stylesheet = sc;
95 stylesheet = new Stylesheet(parent)
122 StylesheetRoot stylesheet; local
    [all...]
ProcessorLRE.java 35 import org.apache.xalan.templates.Stylesheet;
82 // Literal Result Template as stylesheet.
85 handler.getProcessorFor(Constants.S_XSLNAMESPACEURL, "stylesheet",
86 "xsl:stylesheet");
90 Stylesheet stylesheet; local
93 stylesheet = getStylesheetRoot(handler);
100 // stylesheet.setDOMBackPointer(handler.getOriginatingNode());
111 stylesheet.setLocaterInfo(slocator);
112 stylesheet.setPrefixes(handler.getNamespaceSupport())
321 StylesheetRoot stylesheet; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
StylesheetComposed.java 28 * Represents a stylesheet that has methods that resolve includes and
38 * <li>Properties in that are not atomic on a stylesheet will
46 public class StylesheetComposed extends Stylesheet
51 * Uses an XSL stylesheet document.
52 * @param parent The including or importing stylesheet.
54 public StylesheetComposed(Stylesheet parent)
81 //recomposeIncludes(this); // Build the global include list for this stylesheet.
89 Stylesheet included = getIncludeComposed(i);
167 /** The precedence of this stylesheet in the global import list.
168 * The lowest precedence stylesheet is 0. A highe
    [all...]
  /external/bzip2/
bz-html.xsl 2 <!DOCTYPE xsl:stylesheet [ <!ENTITY bz-css SYSTEM "./bzip.css"> ]>
4 <xsl:stylesheet
20 </xsl:stylesheet>
  /external/chromium/chrome/browser/resources/
guest_session_tab.html 5 <link rel="stylesheet" href="incognito_tab.css">
7 // Until themes can clear the cache, force-reload the theme stylesheet.
8 document.write('<link id="incognitothemecss" rel="stylesheet" ' +
  /external/chromium/chrome/browser/resources/options/
options.html 12 <link rel="stylesheet" href="chrome://resources/css/button.css">
13 <link rel="stylesheet" href="chrome://resources/css/list.css">
14 <link rel="stylesheet" href="chrome://resources/css/throbber.css">
15 <link rel="stylesheet" href="chrome://resources/css/tree.css">
16 <link rel="stylesheet" href="../webui.css">
17 <link rel="stylesheet" href="options_page.css">
18 <link rel="stylesheet" href="advanced_options.css">
19 <link rel="stylesheet" href="alert_overlay.css">
20 <link rel="stylesheet" href="autofill_options.css">
21 <link rel="stylesheet" href="autofill_overlay.css"
    [all...]
  /docs/source.android.com/templates/
includes 6 <link href="/assets/main.css" rel="stylesheet" type="text/css" />

Completed in 242 milliseconds

1 2 3 4 5 6 7 8 91011>>