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

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

Issue 1291723004: Remove all support for <applet> handling in Chrome. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase 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
« no previous file with comments | « Source/core/html/HTMLTagNames.in ('k') | Source/core/html/parser/HTMLElementStack.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/WindowNameCollection.cpp
diff --git a/Source/core/html/WindowNameCollection.cpp b/Source/core/html/WindowNameCollection.cpp
index a229b05f15907189cd1258f35aef8c1e01dcdae4..4adf390cc104fe36119854f2f477604dc2be23d3 100644
--- a/Source/core/html/WindowNameCollection.cpp
+++ b/Source/core/html/WindowNameCollection.cpp
@@ -16,11 +16,10 @@ WindowNameCollection::WindowNameCollection(ContainerNode& document, const Atomic
bool WindowNameCollection::elementMatches(const Element& element) const
{
- // Match only images, forms, applets, embeds and objects by name,
+ // Match only images, forms, embeds and objects by name,
// but anything by id
if (isHTMLImageElement(element)
|| isHTMLFormElement(element)
- || isHTMLAppletElement(element)
|| isHTMLEmbedElement(element)
|| isHTMLObjectElement(element)) {
if (element.getNameAttribute() == m_name)
« no previous file with comments | « Source/core/html/HTMLTagNames.in ('k') | Source/core/html/parser/HTMLElementStack.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698