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

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

Issue 14028014: Remove MicroData implementation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Also delete all the tests Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « Source/WebCore/html/HTMLIFrameElement.h ('k') | Source/WebCore/html/HTMLImageElement.h » ('j') | 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 132
133 void HTMLIFrameElement::didRecalcStyle(StyleChange styleChange) 133 void HTMLIFrameElement::didRecalcStyle(StyleChange styleChange)
134 { 134 {
135 if (!shouldDisplaySeamlessly()) 135 if (!shouldDisplaySeamlessly())
136 return; 136 return;
137 Document* childDocument = contentDocument(); 137 Document* childDocument = contentDocument();
138 if (styleChange >= Inherit || childDocument->childNeedsStyleRecalc() || chil dDocument->needsStyleRecalc()) 138 if (styleChange >= Inherit || childDocument->childNeedsStyleRecalc() || chil dDocument->needsStyleRecalc())
139 contentDocument()->recalcStyle(styleChange); 139 contentDocument()->recalcStyle(styleChange);
140 } 140 }
141 141
142 #if ENABLE(MICRODATA)
143 String HTMLIFrameElement::itemValueText() const
144 {
145 return getURLAttribute(srcAttr);
146 } 142 }
147
148 void HTMLIFrameElement::setItemValueText(const String& value, ExceptionCode&)
149 {
150 setAttribute(srcAttr, value);
151 }
152 #endif
153
154 }
OLDNEW
« no previous file with comments | « Source/WebCore/html/HTMLIFrameElement.h ('k') | Source/WebCore/html/HTMLImageElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698