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

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

Issue 72363002: Rename es => exceptionState in other than bindings/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Retry Created 7 years, 1 month 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/core/html/HTMLTableRowElement.cpp ('k') | Source/core/html/HTMLTextAreaElement.cpp » ('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) 1997 Martin Jones (mjones@kde.org) 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org)
3 * (C) 1997 Torben Weis (weis@kde.org) 3 * (C) 1997 Torben Weis (weis@kde.org)
4 * (C) 1998 Waldo Bastian (bastian@kde.org) 4 * (C) 1998 Waldo Bastian (bastian@kde.org)
5 * (C) 1999 Lars Knoll (knoll@kde.org) 5 * (C) 1999 Lars Knoll (knoll@kde.org)
6 * (C) 1999 Antti Koivisto (koivisto@kde.org) 6 * (C) 1999 Antti Koivisto (koivisto@kde.org)
7 * Copyright (C) 2003, 2004, 2005, 2006, 2010 Apple Inc. All rights reserved. 7 * Copyright (C) 2003, 2004, 2005, 2006, 2010 Apple Inc. 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 const StylePropertySet* HTMLTableSectionElement::additionalPresentationAttribute Style() 50 const StylePropertySet* HTMLTableSectionElement::additionalPresentationAttribute Style()
51 { 51 {
52 if (HTMLTableElement* table = findParentTable()) 52 if (HTMLTableElement* table = findParentTable())
53 return table->additionalGroupStyle(true); 53 return table->additionalGroupStyle(true);
54 return 0; 54 return 0;
55 } 55 }
56 56
57 // these functions are rather slow, since we need to get the row at 57 // these functions are rather slow, since we need to get the row at
58 // the index... but they aren't used during usual HTML parsing anyway 58 // the index... but they aren't used during usual HTML parsing anyway
59 PassRefPtr<HTMLElement> HTMLTableSectionElement::insertRow(int index, ExceptionS tate& es) 59 PassRefPtr<HTMLElement> HTMLTableSectionElement::insertRow(int index, ExceptionS tate& exceptionState)
60 { 60 {
61 RefPtr<HTMLTableRowElement> row; 61 RefPtr<HTMLTableRowElement> row;
62 RefPtr<HTMLCollection> children = rows(); 62 RefPtr<HTMLCollection> children = rows();
63 int numRows = children ? (int)children->length() : 0; 63 int numRows = children ? (int)children->length() : 0;
64 if (index < -1 || index > numRows) 64 if (index < -1 || index > numRows)
65 es.throwUninformativeAndGenericDOMException(IndexSizeError); // per the DOM 65 exceptionState.throwUninformativeAndGenericDOMException(IndexSizeError); // per the DOM
66 else { 66 else {
67 row = HTMLTableRowElement::create(document()); 67 row = HTMLTableRowElement::create(document());
68 if (numRows == index || index == -1) 68 if (numRows == index || index == -1)
69 appendChild(row, es); 69 appendChild(row, exceptionState);
70 else { 70 else {
71 Node* n; 71 Node* n;
72 if (index < 1) 72 if (index < 1)
73 n = firstChild(); 73 n = firstChild();
74 else 74 else
75 n = children->item(index); 75 n = children->item(index);
76 insertBefore(row, n, es); 76 insertBefore(row, n, exceptionState);
77 } 77 }
78 } 78 }
79 return row.release(); 79 return row.release();
80 } 80 }
81 81
82 void HTMLTableSectionElement::deleteRow(int index, ExceptionState& es) 82 void HTMLTableSectionElement::deleteRow(int index, ExceptionState& exceptionStat e)
83 { 83 {
84 RefPtr<HTMLCollection> children = rows(); 84 RefPtr<HTMLCollection> children = rows();
85 int numRows = children ? (int)children->length() : 0; 85 int numRows = children ? (int)children->length() : 0;
86 if (index == -1) 86 if (index == -1)
87 index = numRows - 1; 87 index = numRows - 1;
88 if (index >= 0 && index < numRows) { 88 if (index >= 0 && index < numRows) {
89 RefPtr<Node> row = children->item(index); 89 RefPtr<Node> row = children->item(index);
90 HTMLElement::removeChild(row.get(), es); 90 HTMLElement::removeChild(row.get(), exceptionState);
91 } else { 91 } else {
92 es.throwUninformativeAndGenericDOMException(IndexSizeError); 92 exceptionState.throwUninformativeAndGenericDOMException(IndexSizeError);
93 } 93 }
94 } 94 }
95 95
96 int HTMLTableSectionElement::numRows() const 96 int HTMLTableSectionElement::numRows() const
97 { 97 {
98 int rows = 0; 98 int rows = 0;
99 const Node *n = firstChild(); 99 const Node *n = firstChild();
100 while (n) { 100 while (n) {
101 if (n->hasTagName(trTag)) 101 if (n->hasTagName(trTag))
102 rows++; 102 rows++;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 { 145 {
146 setAttribute(valignAttr, value); 146 setAttribute(valignAttr, value);
147 } 147 }
148 148
149 PassRefPtr<HTMLCollection> HTMLTableSectionElement::rows() 149 PassRefPtr<HTMLCollection> HTMLTableSectionElement::rows()
150 { 150 {
151 return ensureCachedHTMLCollection(TSectionRows); 151 return ensureCachedHTMLCollection(TSectionRows);
152 } 152 }
153 153
154 } 154 }
OLDNEW
« no previous file with comments | « Source/core/html/HTMLTableRowElement.cpp ('k') | Source/core/html/HTMLTextAreaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698