Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(369)

Unified Diff: sky/engine/core/html/HTMLElement.cpp

Issue 693243002: Remove interactive content and form related API from HTMLElement. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/engine/core/html/HTMLElement.h ('k') | sky/engine/core/html/HTMLImageElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/html/HTMLElement.cpp
diff --git a/sky/engine/core/html/HTMLElement.cpp b/sky/engine/core/html/HTMLElement.cpp
index 7d1775513da006ea98440275e2c44b8fc5418c39..64d29e0e175c400a367729f158d850ddb7573972 100644
--- a/sky/engine/core/html/HTMLElement.cpp
+++ b/sky/engine/core/html/HTMLElement.cpp
@@ -84,11 +84,6 @@ void HTMLElement::click()
dispatchSimulatedClick(0, SendNoEvents);
}
-void HTMLElement::accessKeyAction(bool sendMouseEvents)
-{
- dispatchSimulatedClick(0, sendMouseEvents ? SendMouseUpDownEvents : SendNoEvents);
-}
-
String HTMLElement::title() const
{
return getAttribute(HTMLNames::titleAttr);
@@ -130,17 +125,6 @@ void HTMLElement::setDir(const AtomicString& value)
setAttribute(HTMLNames::dirAttr, value);
}
-bool HTMLElement::isInteractiveContent() const
-{
- return false;
-}
-
-const AtomicString& HTMLElement::eventParameterName()
-{
- DEFINE_STATIC_LOCAL(const AtomicString, eventString, ("event", AtomicString::ConstructFromLiteral));
- return eventString;
-}
-
v8::Handle<v8::Object> HTMLElement::wrap(v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
{
return createV8HTMLWrapper(this, creationContext, isolate);
« no previous file with comments | « sky/engine/core/html/HTMLElement.h ('k') | sky/engine/core/html/HTMLImageElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698