OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HTMLAnchorElement
(Results
1 - 25
of
34
) sorted by null
1
2
/external/webkit/Source/WebCore/html/
HTMLAnchorElement.cpp
25
#include "
HTMLAnchorElement
.h"
47
HTMLAnchorElement
::
HTMLAnchorElement
(const QualifiedName& tagName, Document* document)
54
PassRefPtr<
HTMLAnchorElement
>
HTMLAnchorElement
::create(Document* document)
56
return adoptRef(new
HTMLAnchorElement
(aTag, document));
59
PassRefPtr<
HTMLAnchorElement
>
HTMLAnchorElement
::create(const QualifiedName& tagName, Document* document)
61
return adoptRef(new
HTMLAnchorElement
(tagName, document));
73
bool
HTMLAnchorElement
::supportsFocus() cons
[
all
...]
HTMLAnchorElement.h
54
class
HTMLAnchorElement
: public HTMLElement {
56
static PassRefPtr<
HTMLAnchorElement
> create(Document*);
57
static PassRefPtr<
HTMLAnchorElement
> create(const QualifiedName&, Document*);
99
HTMLAnchorElement
(const QualifiedName&, Document*);
HTMLAreaElement.h
26
#include "
HTMLAnchorElement
.h"
36
class HTMLAreaElement : public
HTMLAnchorElement
{
HTMLAnchorElement.idl
23
interface
HTMLAnchorElement
: HTMLElement {
HTMLAreaElement.cpp
42
:
HTMLAnchorElement
(tagName, document)
71
HTMLAnchorElement
::parseMappedAttribute(attr);
204
HTMLAnchorElement
::setFocus(shouldBeFocused);
HTMLViewSourceDocument.cpp
30
#include "
HTMLAnchorElement
.h"
303
RefPtr<
HTMLAnchorElement
> anchor =
HTMLAnchorElement
::create(this);
/external/webkit/Source/WebCore/editing/
UnlinkCommand.cpp
29
#include "
HTMLAnchorElement
.h"
44
removeStyledElement(
HTMLAnchorElement
::create(document()));
CreateLinkCommand.cpp
31
#include "
HTMLAnchorElement
.h"
46
RefPtr<
HTMLAnchorElement
> anchorElement =
HTMLAnchorElement
::create(document());
/external/webkit/LayoutTests/fast/url/script-tests/
scheme.js
7
//
HTMLAnchorElement
.href. In order to test absolute URL parsing, we'd need
/external/webkit/Source/WebCore/dom/
TreeScope.cpp
30
#include "
HTMLAnchorElement
.h"
154
HTMLAnchorElement
* anchor = static_cast<
HTMLAnchorElement
*>(node);
/external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/
set-href-attribute-search.js
1
description('Test setting the search attribute of the URL in
HTMLAnchorElement
.');
set-href-attribute-port.js
1
description('Test setting the port attribute of the URL in
HTMLAnchorElement
.');
set-href-attribute-protocol.js
1
description('Test setting the protocol attribute of the URL in
HTMLAnchorElement
.');
set-href-attribute-whitespace.js
1
description('Test setting the href attribute of an
HTMLAnchorElement
to a URL with leading and trailing whitespace.');
set-href-attribute-hash.js
1
description('Test setting the hash attribute of the URL in
HTMLAnchorElement
.');
set-href-attribute-hostname.js
1
description('Test setting the hostname attribute of the URL in
HTMLAnchorElement
.');
set-href-attribute-pathname.js
1
description('Test setting the pathname attribute of the URL in
HTMLAnchorElement
.');
set-href-attribute-host.js
1
description('Test setting the host attribute of the URL in
HTMLAnchorElement
.');
/external/webkit/LayoutTests/dom/html/level2/html/
HTMLAnchorElement13.js
78
HTMLAnchorElement
.blur should surrender input focus.
HTMLAnchorElement14.js
78
HTMLAnchorElement
.focus should capture input focus.
/external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLAnchorElement13.js
78
HTMLAnchorElement
.blur should surrender input focus.
HTMLAnchorElement14.js
78
HTMLAnchorElement
.focus should capture input focus.
/external/webkit/Source/WebKit/android/jni/
WebViewCore.h
52
class
HTMLAnchorElement
;
629
WebCore::
HTMLAnchorElement
* retrieveAnchorElement(int x, int y);
/external/webkit/Source/WebCore/accessibility/
AccessibilityRenderObject.h
43
class
HTMLAnchorElement
;
AccessibilityRenderObject.cpp
811
// NOTE: this assumes that any non-image with an anchor is an
HTMLAnchorElement
[
all
...]
Completed in 706 milliseconds
1
2