| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google, Inc. All Rights Reserved. | 2 * Copyright (C) 2010 Google, 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 void defaultForInHead(); | 161 void defaultForInHead(); |
| 162 void defaultForInHeadNoscript(); | 162 void defaultForInHeadNoscript(); |
| 163 void defaultForAfterHead(); | 163 void defaultForAfterHead(); |
| 164 void defaultForInTableText(); | 164 void defaultForInTableText(); |
| 165 | 165 |
| 166 void processUsingSecondaryInsertionModeAndAdjustInsertionMode(AtomicHTMLToke
n&); | 166 void processUsingSecondaryInsertionModeAndAdjustInsertionMode(AtomicHTMLToke
n&); |
| 167 | 167 |
| 168 PassRefPtr<NamedNodeMap> attributesForIsindexInput(AtomicHTMLToken&); | 168 PassRefPtr<NamedNodeMap> attributesForIsindexInput(AtomicHTMLToken&); |
| 169 | 169 |
| 170 HTMLElementStack::ElementRecord* furthestBlockForFormattingElement(Element*)
; | 170 HTMLElementStack::ElementRecord* furthestBlockForFormattingElement(Element*)
; |
| 171 void reparentChildren(Element* oldParent, Element* newParent); | |
| 172 void callTheAdoptionAgency(AtomicHTMLToken&); | 171 void callTheAdoptionAgency(AtomicHTMLToken&); |
| 173 | 172 |
| 174 void closeTheCell(); | 173 void closeTheCell(); |
| 175 | 174 |
| 176 template <bool shouldClose(const Element*)> | 175 template <bool shouldClose(const Element*)> |
| 177 void processCloseWhenNestedTag(AtomicHTMLToken&); | 176 void processCloseWhenNestedTag(AtomicHTMLToken&); |
| 178 | 177 |
| 179 bool m_framesetOk; | 178 bool m_framesetOk; |
| 180 | 179 |
| 181 // FIXME: Implement error reporting. | 180 // FIXME: Implement error reporting. |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 // empty string input. | 262 // empty string input. |
| 264 // The double* parameter may be 0. | 263 // The double* parameter may be 0. |
| 265 bool parseToDoubleForNumberType(const String&, double*); | 264 bool parseToDoubleForNumberType(const String&, double*); |
| 266 // Converts the specified number to a string. This is an implementation of | 265 // Converts the specified number to a string. This is an implementation of |
| 267 // HTML5's "algorithm to convert a number to a string" for NUMBER/RANGE types. | 266 // HTML5's "algorithm to convert a number to a string" for NUMBER/RANGE types. |
| 268 String serializeForNumberType(double); | 267 String serializeForNumberType(double); |
| 269 | 268 |
| 270 } | 269 } |
| 271 | 270 |
| 272 #endif | 271 #endif |
| OLD | NEW |