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

Unified Diff: third_party/WebKit/Source/web/WebAXObject.cpp

Issue 1713723002: Implement accessibility support for CSS-transformed iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 9 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
Index: third_party/WebKit/Source/web/WebAXObject.cpp
diff --git a/third_party/WebKit/Source/web/WebAXObject.cpp b/third_party/WebKit/Source/web/WebAXObject.cpp
index 4445b63bb9c56609ac56b5dffba20f9e3c34ab55..4df47cd978ddfc506526aba686a3aaa18bfa71b2 100644
--- a/third_party/WebKit/Source/web/WebAXObject.cpp
+++ b/third_party/WebKit/Source/web/WebAXObject.cpp
@@ -30,6 +30,7 @@
#include "public/web/WebAXObject.h"
+#include "SkMatrix44.h"
#include "core/HTMLNames.h"
#include "core/css/CSSPrimitiveValueMappings.h"
#include "core/dom/Document.h"
@@ -1506,6 +1507,14 @@ void WebAXObject::scrollToGlobalPoint(const WebPoint& point) const
m_private->scrollToGlobalPoint(point);
}
+SkMatrix44 WebAXObject::transformFromLocalParentFrame() const
+{
+ if (isDetached())
+ return SkMatrix44();
+
+ return m_private->transformFromLocalParentFrame();
+}
+
WebAXObject::WebAXObject(AXObject* object)
: m_private(object)
{

Powered by Google App Engine
This is Rietveld 408576698