summaryrefslogtreecommitdiffstats
path: root/WebCore/html
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2010-05-11 18:45:47 +0100
committerBen Murdoch <benm@google.com>2010-05-14 12:18:43 +0100
commit57a47dd4f75b9c15804c3c61479540cfdc11bd6e (patch)
tree5ec595511ac1e4b36aea409b2705e3e332b4366f /WebCore/html
parent21939df44de1705786c545cd1bf519d47250322d (diff)
downloadexternal_webkit-57a47dd4f75b9c15804c3c61479540cfdc11bd6e.zip
external_webkit-57a47dd4f75b9c15804c3c61479540cfdc11bd6e.tar.gz
external_webkit-57a47dd4f75b9c15804c3c61479540cfdc11bd6e.tar.bz2
Merge Webkit at r58956: Fix conflicts.
Fix conflict: JavaScriptCore/wtf/MathExtras.h: Take theirs due to recently upstreamed change http://trac.webkit.org/changeset/58110 Fix conflict: WebCore/dom/Node.cpp: Take both. The Android part can be removed post-merge. Fix conflict: WebCore/platform/ScrollView.cpp Fix conflict: WebCore/platform/ScrollView.h Fix conflict: WebCore/platform/android/ScrollViewAndroid.cpp: Remove ScrollView::platformProhibitsScrolling and ScrollView::scrollRectIntoViewRecursively as they have been removed upstream in http://trac.webkit.org/changeset/58428, http://trac.webkit.org/changeset/58445 and http://trac.webkit.org/changeset/58611. platformProhibitsScrolling was an Android specific function called only from scrollRectIntoViewRecursively. Fix conflict: WebCore/bindings/v8/ScriptCallStack.cpp: Take both (we have an Android specific addition). Fix conflict: WebCore/html/HTMLOptionElement.cpp: Take theirs, our fix has been upstreamed in http://trac.webkit.org/changeset/58490. Fix conflict: WebCore/rendering/RenderBox.cpp: Take theirs. See http://trac.webkit.org/changeset/58177 Fix conflict: WebCore/css/CSSStyleSelector.cpp Take both (Android specific addition). Fix conflict: WebCore/css/CSSParser.cpp Take both (Android specific addition). Fix conflict: WebCore/bridge/jni/jni_jsobject.h: Take theirs. see http://trac.webkit.org/changeset/58775 Fix conflict: FileSystemAndroid.cpp: Fix conflict: FileSystemPOSIX.cpp: Take ours. Our changes have been upstreamed but beyond 58596. See http://trac.webkit.org/changeset/59226 Change-Id: I92c7e319bea9edcc2eb08726654b5c1e163effaf
Diffstat (limited to 'WebCore/html')
-rw-r--r--WebCore/html/HTMLOptionElement.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/WebCore/html/HTMLOptionElement.cpp b/WebCore/html/HTMLOptionElement.cpp
index 1280d32..1e07221 100644
--- a/WebCore/html/HTMLOptionElement.cpp
+++ b/WebCore/html/HTMLOptionElement.cpp
@@ -190,15 +190,7 @@ void HTMLOptionElement::childrenChanged(bool changedByParser, Node* beforeChange
HTMLSelectElement* HTMLOptionElement::ownerSelectElement() const
{
Node* select = parentNode();
-<<<<<<< HEAD:WebCore/html/HTMLOptionElement.cpp
-#ifdef ANDROID_FIX
while (select && !(select->hasTagName(selectTag) || select->hasTagName(keygenTag)))
-#else
- while (select && !select->hasTagName(selectTag))
-#endif
-=======
- while (select && !(select->hasTagName(selectTag) || select->hasTagName(keygenTag)))
->>>>>>> webkit.org at r58956:WebCore/html/HTMLOptionElement.cpp
select = select->parentNode();
if (!select)