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

Unified Diff: Source/web/WebDocument.cpp

Issue 723073003: Navigation transitions (web to native app): Bug fix for hide/Show transition elements (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: review fix Created 6 years, 1 month 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 | « no previous file | Source/web/tests/WebDocumentTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebDocument.cpp
diff --git a/Source/web/WebDocument.cpp b/Source/web/WebDocument.cpp
index 07f387bf191b8392a98b8f352e3da7199081567e..e67418d635a6f3beb8122a9ce974a6c732f22265 100644
--- a/Source/web/WebDocument.cpp
+++ b/Source/web/WebDocument.cpp
@@ -306,7 +306,7 @@ void WebDocument::hideTransitionElements(const WebString& cssSelector)
void WebDocument::showTransitionElements(const WebString& cssSelector)
{
RefPtrWillBeRawPtr<Document> document = unwrap<Document>();
- document->hideTransitionElements(cssSelector);
+ document->showTransitionElements(cssSelector);
}
WebAXObject WebDocument::accessibilityObject() const
« no previous file with comments | « no previous file | Source/web/tests/WebDocumentTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698