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

Side by Side Diff: Source/core/html/HTMLIFrameElement.cpp

Issue 1040943002: When call getAttribute, HTMLIFrame.sandbox has a bug which don't return changed value. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Modify a test-case for Layout Test. Created 5 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 unified diff | Download patch
« no previous file with comments | « Source/core/html/HTMLIFrameElement.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Simon Hausmann (hausmann@kde.org) 4 * (C) 2000 Simon Hausmann (hausmann@kde.org)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2004, 2006, 2008, 2009 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2006, 2008, 2009 Apple Inc. All rights reserved.
7 * Copyright (C) 2009 Ericsson AB. All rights reserved. 7 * Copyright (C) 2009 Ericsson AB. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 HTMLFrameElementBase::removedFrom(insertionPoint); 156 HTMLFrameElementBase::removedFrom(insertionPoint);
157 if (insertionPoint->inDocument() && document().isHTMLDocument() && !insertio nPoint->isInShadowTree()) 157 if (insertionPoint->inDocument() && document().isHTMLDocument() && !insertio nPoint->isInShadowTree())
158 toHTMLDocument(document()).removeExtraNamedItem(m_name); 158 toHTMLDocument(document()).removeExtraNamedItem(m_name);
159 } 159 }
160 160
161 bool HTMLIFrameElement::isInteractiveContent() const 161 bool HTMLIFrameElement::isInteractiveContent() const
162 { 162 {
163 return true; 163 return true;
164 } 164 }
165 165
166 void HTMLIFrameElement::valueChanged() 166 void HTMLIFrameElement::valueChanged(DOMSettableTokenList* tokenList)
167 { 167 {
168 String invalidTokens; 168 if (tokenList == m_sandbox) {
Mike West 2015/03/30 05:01:57 When wouldn't this be true? Can you either `ASSERT
hyunjunekim2 2015/03/30 07:02:51 If HTMLIFrameElement has two DOMSettableTokenList,
Mike West 2015/03/30 09:01:33 But HTMLIFrameElement doesn't have two DOMSettable
hyunjunekim2 2015/03/30 09:16:22 Ok, I'm wrong, It's also my mistake. After file a
169 setSandboxFlags(m_sandbox->value().isNull() ? SandboxNone : parseSandboxPoli cy(m_sandbox->tokens(), invalidTokens)); 169 String invalidTokens;
170 if (!invalidTokens.isNull()) 170 setSandboxFlags(m_sandbox->value().isNull() ? SandboxNone : parseSandbox Policy(m_sandbox->tokens(), invalidTokens));
171 document().addConsoleMessage(ConsoleMessage::create(OtherMessageSource, ErrorMessageLevel, "Error while parsing the 'sandbox' attribute: " + invalidToke ns)); 171 if (!invalidTokens.isNull())
172 document().addConsoleMessage(ConsoleMessage::create(OtherMessageSour ce, ErrorMessageLevel, "Error while parsing the 'sandbox' attribute: " + invalid Tokens));
173 setSynchronizedLazyAttribute(sandboxAttr, m_sandbox->value());
Mike West 2015/03/30 05:01:57 This line is the only actual change in the patch,
hyunjunekim2 2015/03/30 07:02:51 I have a reason adding this one. Because it add th
174 }
172 } 175 }
173 176
174 } 177 }
OLDNEW
« no previous file with comments | « Source/core/html/HTMLIFrameElement.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698