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

Side by Side Diff: Source/WebCore/html/HTMLElement.idl

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/HTMLElement.cpp ('k') | Source/WebCore/html/HTMLEmbedElement.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) 2006, 2007, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 [RaisesException] void insertAdjacentText([Optional=DefaultIsUndefined] DOMS tring where, 49 [RaisesException] void insertAdjacentText([Optional=DefaultIsUndefined] DOMS tring where,
50 [Optional=DefaultIsUndefined] DOMString text); 50 [Optional=DefaultIsUndefined] DOMString text);
51 51
52 readonly attribute HTMLCollection children; 52 readonly attribute HTMLCollection children;
53 53
54 [TreatNullAs=NullString, SetterRaisesException] attribute DOMString contentEditable; 54 [TreatNullAs=NullString, SetterRaisesException] attribute DOMString contentEditable;
55 readonly attribute boolean isContentEditable; 55 readonly attribute boolean isContentEditable;
56 56
57 attribute boolean spellcheck; 57 attribute boolean spellcheck;
58 58
59 [Conditional=MICRODATA, Reflect] attribute boolean itemScope;
60 [Conditional=MICRODATA] readonly attribute DOMSettableTokenList itemType;
61 [Conditional=MICRODATA, Reflect, URL] attribute DOMString itemId;
62
63 [Conditional=MICRODATA] readonly attribute DOMSettableTokenList itemRef;
64 [Conditional=MICRODATA] readonly attribute DOMSettableTokenList itemProp;
65
66 #if defined(ENABLE_MICRODATA) && ENABLE_MICRODATA
67 [Conditional=MICRODATA] readonly attribute HTMLPropertiesCollection properti es;
68 #endif
69
70 [Conditional=MICRODATA, Custom, SetterRaisesException] attribute any itemVal ue;
71
72 void click(); 59 void click();
73 }; 60 };
74 61
OLDNEW
« no previous file with comments | « Source/WebCore/html/HTMLElement.cpp ('k') | Source/WebCore/html/HTMLEmbedElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698