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

Unified Diff: Source/core/html/HTMLObjectElement.cpp

Issue 1291723004: Remove all support for <applet> handling in Chrome. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Hopefully all the tests Created 5 years, 4 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: Source/core/html/HTMLObjectElement.cpp
diff --git a/Source/core/html/HTMLObjectElement.cpp b/Source/core/html/HTMLObjectElement.cpp
index bd68de6aa31c56eee19279961372fcbb09d856c5..dfdeeb2b400e316449a8624f0c7c6240034918ac 100644
--- a/Source/core/html/HTMLObjectElement.cpp
+++ b/Source/core/html/HTMLObjectElement.cpp
@@ -411,8 +411,6 @@ bool HTMLObjectElement::containsJavaApplet() const
return true;
if (isHTMLObjectElement(child) && toHTMLObjectElement(child).containsJavaApplet())
return true;
- if (isHTMLAppletElement(child))
- return true;
}
return false;

Powered by Google App Engine
This is Rietveld 408576698