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

Unified Diff: Source/web/WebAXObject.cpp

Issue 1225553002: CSSValue Immediates: Make CSSPrimitiveValue a container (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@cssvalue_patch_1
Patch Set: Rebase Created 5 years, 5 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 | « Source/web/PluginPlaceholderImplTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebAXObject.cpp
diff --git a/Source/web/WebAXObject.cpp b/Source/web/WebAXObject.cpp
index 79b2b4757f2251be5d66b71f65f21949d626e45c..1b78eea8c3e9571899c35819bd9bf213186f5eb3 100644
--- a/Source/web/WebAXObject.cpp
+++ b/Source/web/WebAXObject.cpp
@@ -1198,7 +1198,7 @@ WebString WebAXObject::computedStyleDisplay() const
if (!computedStyle)
return WebString();
- return WebString(CSSPrimitiveValue::create(computedStyle->display())->getStringValue());
+ return WebString(CSSPrimitiveValue::create(computedStyle->display()).getStringValue());
}
bool WebAXObject::accessibilityIsIgnored() const
« no previous file with comments | « Source/web/PluginPlaceholderImplTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698