/external/webkit/LayoutTests/fast/encoding/resources/ |
parser-tests.js | 0 document.write('<p>This test suite was converted from http://www.hixie.ch/tests/adhoc/html/parsing/encoding/all.html</p>' + 20 var frame = document.getElementById('test'); 29 var want = frame.contentWindow.document.getElementById('expected').firstChild.data; 30 var have = frame.contentWindow.document.getElementById('encoding').firstChild.data; 34 var li = document.createElement('li'); 35 var a = document.createElement('a'); 36 a.appendChild(document.createTextNode('test ' + s)); 39 li.appendChild(document.createTextNode(': expected ' + want + '; used ' + have)); 40 var pre = document.createElement('pre'); 41 pre.appendChild(document.createTextNode(frame.contentWindow.document.getElementsByTagName('pre')[0].firstChild.data)) [all...] |
/external/webkit/Source/WebCore/editing/ |
ModifySelectionListLevel.cpp | 29 #include "Document.h" 38 ModifySelectionListLevelCommand::ModifySelectionListLevelCommand(Document* document) 39 : CompositeEditCommand(document) 137 IncreaseSelectionListLevelCommand::IncreaseSelectionListLevelCommand(Document* document, Type listType) 138 : ModifySelectionListLevelCommand(document) 193 newParent = createOrderedListElement(document()); 196 newParent = createUnorderedListElement(document()); 205 bool IncreaseSelectionListLevelCommand::canIncreaseSelectionListLevel(Document* document [all...] |
InsertTextCommand.h | 40 static PassRefPtr<InsertTextCommand> create(Document* document) 42 return adoptRef(new InsertTextCommand(document)); 49 InsertTextCommand(Document*);
|
RemoveCSSPropertyCommand.h | 37 static PassRefPtr<RemoveCSSPropertyCommand> create(Document* document, PassRefPtr<StyledElement> element, CSSPropertyID property) 39 return adoptRef(new RemoveCSSPropertyCommand(document, element, property)); 43 RemoveCSSPropertyCommand(Document*, PassRefPtr<StyledElement>, CSSPropertyID property);
|
/external/webkit/Source/WebCore/loader/ |
DocumentWriter.cpp | 54 return parentFrame && parentFrame->document()->securityOrigin()->canAccess(frame->document()->securityOrigin()); 70 begin(m_frame->document()->url(), true, m_frame->document()->securityOrigin()); 75 m_frame->document()->setCompatibilityMode(Document::NoQuirksMode); 80 if (DocumentParser* parser = m_frame->document()->parser()) 100 PassRefPtr<Document> DocumentWriter::createDocument(const KURL& url) 112 // might destroy the document that owns it. 115 // Create a new document before clearing the frame, because it may need t 121 RefPtr<Document> document = createDocument(url); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
DomUtilitiesTest.java | 18 import org.w3c.dom.Document; 59 Document document1 = builder.newDocument(); 60 Document document2 = builder.newDocument(); 108 Document document = builder.newDocument(); local 109 document.appendChild(document.createElement("root")); 110 Element root = document.getDocumentElement(); 111 root.appendChild(document.createTextNode(" ")); 112 Element foo = document.createElement("foo") 137 Document document = builder.newDocument(); local 176 Document document = builder.newDocument(); local 210 Document document = builder.newDocument(); local [all...] |
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/ |
util.js | 2 return document.getElementById(el); 17 return document.evaluate(expression, node,
|
/external/webkit/LayoutTests/fast/dom/HTMLLabelElement/script-tests/ |
label-control.js | 4 document.write("<label id='test1'><input id='inputId1'></label>"); 5 shouldBe("document.getElementById('test1').control.id", "'inputId1'"); 8 document.write("<label id='test2' for='inputId2'></label><input id='inputId2' type='number'>"); 9 shouldBe("document.getElementById('test2').htmlFor", "'inputId2'"); 10 shouldBe("document.getElementById('test2').control.type", "'number'"); 13 document.write("<label id='test3'><p><input id='inputId3' type='date'></p></label>"); 14 shouldBe("document.getElementById('test3').control.id", "'inputId3'"); 18 document.write("<label id='test4'><fieldset><input id='inputId4'></fieldset></label>"); 19 shouldBe("document.getElementById('test4').control.id", "'inputId4'"); 23 document.write("<label id='test5'><legend><input id='inputId5'></legend></label>") [all...] |
/external/webkit/LayoutTests/fast/events/touch/script-tests/ |
document-create-touch.js | 1 description("This tests support for the document.createTouch API."); 3 shouldBeTrue('"createTouch" in document'); 5 var box = document.createElement("div"); 9 document.body.appendChild(box); 11 var target = document.getElementById("box"); 12 var touch = document.createTouch(window, target, 1, 100, 101, 102, 103); 21 var emptyTouch = document.createTouch(); 31 var badParamsTouch = document.createTouch(function(x) { return x; }, 12, 'a', 'b', 'c', function(x) { return x; }, 104);
|
/external/webkit/Source/WebCore/html/ |
HTMLDataGridCellElement.cpp | 38 inline HTMLDataGridCellElement::HTMLDataGridCellElement(const QualifiedName& name, Document* document) 39 : HTMLElement(name, document) 43 PassRefPtr<HTMLDataGridCellElement> HTMLDataGridCellElement::create(const QualifiedName& name, Document* document) 45 return adoptRef(new HTMLDataGridCellElement(name, document));
|
HTMLPreElement.cpp | 35 inline HTMLPreElement::HTMLPreElement(const QualifiedName& tagName, Document* document) 36 : HTMLElement(tagName, document) 40 PassRefPtr<HTMLPreElement> HTMLPreElement::create(const QualifiedName& tagName, Document* document) 42 return adoptRef(new HTMLPreElement(tagName, document));
|
HTMLTableCaptionElement.cpp | 36 inline HTMLTableCaptionElement::HTMLTableCaptionElement(const QualifiedName& tagName, Document* document) 37 : HTMLTablePartElement(tagName, document) 42 PassRefPtr<HTMLTableCaptionElement> HTMLTableCaptionElement::create(const QualifiedName& tagName, Document* document) 44 return adoptRef(new HTMLTableCaptionElement(tagName, document));
|
/external/webkit/Source/WebCore/html/shadow/ |
SliderThumbElement.h | 50 static PassRefPtr<SliderThumbElement> create(Document*); 61 SliderThumbElement(Document*); 72 inline SliderThumbElement::SliderThumbElement(Document* document) 73 : HTMLDivElement(HTMLNames::divTag, document) 78 inline PassRefPtr<SliderThumbElement> SliderThumbElement::create(Document* document) 80 return adoptRef(new SliderThumbElement(document));
|
/external/webkit/Source/WebCore/mathml/ |
MathMLInlineContainerElement.cpp | 47 MathMLInlineContainerElement::MathMLInlineContainerElement(const QualifiedName& tagName, Document* document) 48 : MathMLElement(tagName, document) 52 PassRefPtr<MathMLInlineContainerElement> MathMLInlineContainerElement::create(const QualifiedName& tagName, Document* document) 54 return adoptRef(new MathMLInlineContainerElement(tagName, document));
|
/external/webkit/Source/WebCore/rendering/svg/ |
RenderSVGResourceContainer.h | 71 inline RenderSVGResourceContainer* getRenderSVGResourceContainerById(Document* document, const AtomicString& id) 76 if (RenderSVGResourceContainer* renderResource = document->accessSVGExtensions()->resourceById(id)) 83 Renderer* getRenderSVGResourceById(Document* document, const AtomicString& id) 85 if (RenderSVGResourceContainer* container = getRenderSVGResourceContainerById(document, id))
|
/external/webkit/Source/WebCore/svg/ |
SVGDefsElement.cpp | 34 inline SVGDefsElement::SVGDefsElement(const QualifiedName& tagName, Document* document) 35 : SVGStyledTransformableElement(tagName, document) 39 PassRefPtr<SVGDefsElement> SVGDefsElement::create(const QualifiedName& tagName, Document* document) 41 return adoptRef(new SVGDefsElement(tagName, document));
|
SVGFontFaceFormatElement.cpp | 32 inline SVGFontFaceFormatElement::SVGFontFaceFormatElement(const QualifiedName& tagName, Document* document) 33 : SVGElement(tagName, document) 37 PassRefPtr<SVGFontFaceFormatElement> SVGFontFaceFormatElement::create(const QualifiedName& tagName, Document* document) 39 return adoptRef(new SVGFontFaceFormatElement(tagName, document));
|
/external/webkit/Source/WebCore/wml/ |
WMLAccessElement.cpp | 35 WMLAccessElement::WMLAccessElement(const QualifiedName& tagName, Document* doc) 40 PassRefPtr<WMLAccessElement> WMLAccessElement::create(const QualifiedName& tagName, Document* document) 42 return adoptRef(new WMLAccessElement(tagName, document)); 67 WMLPageState* pageState = wmlPageStateForDocument(document()); 72 reportWMLError(document(), WMLErrorMultipleAccessElements);
|
WMLFieldSetElement.cpp | 37 WMLFieldSetElement::WMLFieldSetElement(const QualifiedName& tagName, Document* doc) 42 PassRefPtr<WMLFieldSetElement> WMLFieldSetElement::create(const QualifiedName& tagName, Document* document) 44 return adoptRef(new WMLFieldSetElement(tagName, document)); 59 m_insertedLegendElement = WMLElementFactory::createWMLElement(insertedLegendTag, document()); 68 m_insertedLegendElement->appendChild(document()->createTextNode(title), ec);
|
WMLFormControlElement.cpp | 32 WMLFormControlElement::WMLFormControlElement(const QualifiedName& tagName, Document* document) 33 : WMLElement(tagName, document) 38 PassRefPtr<WMLFormControlElement> WMLFormControlElement::create(const QualifiedName& tagName, Document* document) 40 return adoptRef(new WMLFormControlElement(tagName, document));
|
/external/webkit/Source/WebCore/xml/ |
XSLStyleSheetQt.cpp | 28 #include "Document.h" 64 Document* document = ownerDocument(); local 65 if (!document) 67 return document->cachedResourceLoader(); 72 // FIXME: Fix QXmlQuery so that it allows compiling the stylesheet before setting the document 90 Document* XSLStyleSheet::ownerDocument() 93 return node ? node->document() : 0;
|
/external/webkit/Source/WebKit/chromium/src/ |
WebGeolocationPermissionRequest.cpp | 29 #include "Document.h" 41 return WebSecurityOrigin(m_private->frame()->document()->securityOrigin());
|
/external/webkit/Source/WebCore/dom/ |
DecodedDataDocumentParser.cpp | 35 DecodedDataDocumentParser::DecodedDataDocumentParser(Document* document) 36 : DocumentParser(document)
|
Notation.cpp | 24 #include "Document.h" 28 Notation::Notation(Document* document, const String& name, const String& publicId, const String& systemId) 29 : ContainerNode(document)
|
/external/webkit/Source/WebCore/history/ |
CachedPage.h | 33 class Document; 46 Document* document() const { return m_cachedMainFrame->document(); } function in class:WebCore::CachedPage
|