| OLD | NEW | 
|---|
| 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  * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 4  * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 
| 5  * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
     bile.com/) | 5  * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
     bile.com/) | 
| 6  * Copyright (C) 2011 Motorola Mobility. All rights reserved. | 6  * Copyright (C) 2011 Motorola Mobility. All rights reserved. | 
| 7  * | 7  * | 
| 8  * This library is free software; you can redistribute it and/or | 8  * This library is free software; you can redistribute it and/or | 
| 9  * modify it under the terms of the GNU Library General Public | 9  * modify it under the terms of the GNU Library General Public | 
| 10  * License as published by the Free Software Foundation; either | 10  * License as published by the Free Software Foundation; either | 
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 92         || hasLocalName(baseTag) | 92         || hasLocalName(baseTag) | 
| 93         || hasLocalName(basefontTag) | 93         || hasLocalName(basefontTag) | 
| 94         || hasLocalName(brTag) | 94         || hasLocalName(brTag) | 
| 95         || hasLocalName(colTag) | 95         || hasLocalName(colTag) | 
| 96         || hasLocalName(embedTag) | 96         || hasLocalName(embedTag) | 
| 97         || hasLocalName(frameTag) | 97         || hasLocalName(frameTag) | 
| 98         || hasLocalName(hrTag) | 98         || hasLocalName(hrTag) | 
| 99         || hasLocalName(imageTag) | 99         || hasLocalName(imageTag) | 
| 100         || hasLocalName(imgTag) | 100         || hasLocalName(imgTag) | 
| 101         || hasLocalName(inputTag) | 101         || hasLocalName(inputTag) | 
| 102         || hasLocalName(isindexTag) |  | 
| 103         || hasLocalName(linkTag) | 102         || hasLocalName(linkTag) | 
| 104         || hasLocalName(metaTag) | 103         || hasLocalName(metaTag) | 
| 105         || hasLocalName(paramTag) | 104         || hasLocalName(paramTag) | 
| 106         || hasLocalName(sourceTag) | 105         || hasLocalName(sourceTag) | 
| 107         || hasLocalName(wbrTag)) | 106         || hasLocalName(wbrTag)) | 
| 108         return true; | 107         return true; | 
| 109     return false; | 108     return false; | 
| 110 } | 109 } | 
| 111 | 110 | 
| 112 static inline CSSValueID unicodeBidiAttributeForDirAuto(HTMLElement* element) | 111 static inline CSSValueID unicodeBidiAttributeForDirAuto(HTMLElement* element) | 
| (...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 970 #ifndef NDEBUG | 969 #ifndef NDEBUG | 
| 971 | 970 | 
| 972 // For use in the debugger | 971 // For use in the debugger | 
| 973 void dumpInnerHTML(WebCore::HTMLElement*); | 972 void dumpInnerHTML(WebCore::HTMLElement*); | 
| 974 | 973 | 
| 975 void dumpInnerHTML(WebCore::HTMLElement* element) | 974 void dumpInnerHTML(WebCore::HTMLElement* element) | 
| 976 { | 975 { | 
| 977     printf("%s\n", element->innerHTML().ascii().data()); | 976     printf("%s\n", element->innerHTML().ascii().data()); | 
| 978 } | 977 } | 
| 979 #endif | 978 #endif | 
| OLD | NEW | 
|---|