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

Side by Side Diff: Source/core/editing/htmlediting.h

Issue 416393005: Move Node::isBlockFlowElement() to htmlediting.h (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/editing/ReplaceSelectionCommand.cpp ('k') | Source/core/editing/htmlediting.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) 2004, 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2004, 2006, 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 bool isTableCell(const Node*); 114 bool isTableCell(const Node*);
115 bool isEmptyTableCell(const Node*); 115 bool isEmptyTableCell(const Node*);
116 bool isTableStructureNode(const Node*); 116 bool isTableStructureNode(const Node*);
117 bool isHTMLListElement(Node*); 117 bool isHTMLListElement(Node*);
118 bool isListItem(const Node*); 118 bool isListItem(const Node*);
119 bool isNodeRendered(const Node*); 119 bool isNodeRendered(const Node*);
120 bool isNodeVisiblyContainedWithin(Node&, const Range&); 120 bool isNodeVisiblyContainedWithin(Node&, const Range&);
121 bool isRenderedAsNonInlineTableImageOrHR(const Node*); 121 bool isRenderedAsNonInlineTableImageOrHR(const Node*);
122 bool areIdenticalElements(const Node*, const Node*); 122 bool areIdenticalElements(const Node*, const Node*);
123 bool isNonTableCellHTMLBlockElement(const Node*); 123 bool isNonTableCellHTMLBlockElement(const Node*);
124 bool isBlockFlowElement(const Node&);
124 TextDirection directionOfEnclosingBlock(const Position&); 125 TextDirection directionOfEnclosingBlock(const Position&);
125 126
126 // ------------------------------------------------------------------------- 127 // -------------------------------------------------------------------------
127 // Position 128 // Position
128 // ------------------------------------------------------------------------- 129 // -------------------------------------------------------------------------
129 130
130 // Functions returning Position 131 // Functions returning Position
131 132
132 Position nextCandidate(const Position&); 133 Position nextCandidate(const Position&);
133 Position previousCandidate(const Position&); 134 Position previousCandidate(const Position&);
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 // FIXME: this is required until 6853027 is fixed and text checking can do t his for us. 272 // FIXME: this is required until 6853027 is fixed and text checking can do t his for us.
272 return character == '\'' || character == rightSingleQuotationMark || charact er == hebrewPunctuationGershayim; 273 return character == '\'' || character == rightSingleQuotationMark || charact er == hebrewPunctuationGershayim;
273 } 274 }
274 275
275 String stringWithRebalancedWhitespace(const String&, bool startIsStartOfParagrap h, bool endIsEndOfParagraph); 276 String stringWithRebalancedWhitespace(const String&, bool startIsStartOfParagrap h, bool endIsEndOfParagraph);
276 const String& nonBreakingSpaceString(); 277 const String& nonBreakingSpaceString();
277 278
278 } 279 }
279 280
280 #endif 281 #endif
OLDNEW
« no previous file with comments | « Source/core/editing/ReplaceSelectionCommand.cpp ('k') | Source/core/editing/htmlediting.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698