Changeset 81088 in webkit
- Timestamp:
- Mar 14, 2011, 5:53:53 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r81085 r81088 1 2011-03-14 Kent Tamura <tkent@chromium.org> 2 3 Reviewed by James Robinson. 4 5 Assertion failure by form validation message for <select required> with float:left 6 https://bugs.webkit.org/show_bug.cgi?id=55995 7 8 * fast/forms/interactive-validation-select-crash-expected.txt: Added. 9 * fast/forms/interactive-validation-select-crash.html: Added. 10 * platform/gtk/Skipped: 11 * platform/mac/Skipped: 12 * platform/qt/Skipped: 13 * platform/win/Skipped: 14 1 15 2011-03-14 Michael Saboff <msaboff@apple.com> 2 16 -
trunk/LayoutTests/platform/gtk/Skipped
r81030 r81088 1118 1118 fast/forms/interactive-validation-attach-assertion.html 1119 1119 fast/forms/interactive-validation-assertion-by-validate-twice.html 1120 fast/forms/interactive-validation-select-crash.html 1120 1121 1121 1122 # Tests that seem to be Mac only, assume that smart drag-and-drop -
trunk/LayoutTests/platform/mac/Skipped
r81030 r81088 207 207 fast/forms/interactive-validation-attach-assertion.html 208 208 fast/forms/interactive-validation-assertion-by-validate-twice.html 209 fast/forms/interactive-validation-select-crash.html 209 210 210 211 # Web Timing is not enabled. -
trunk/LayoutTests/platform/qt/Skipped
r81030 r81088 2970 2970 fast/forms/interactive-validation-attach-assertion.html 2971 2971 fast/forms/interactive-validation-assertion-by-validate-twice.html 2972 fast/forms/interactive-validation-select-crash.html 2972 2973 2973 2974 # [Qt] REGRESSION(63862): animations/play-state.html fails intermittently -
trunk/LayoutTests/platform/win/Skipped
r81030 r81088 1067 1067 fast/forms/interactive-validation-attach-assertion.html 1068 1068 fast/forms/interactive-validation-assertion-by-validate-twice.html 1069 fast/forms/interactive-validation-select-crash.html 1069 1070 1070 1071 # Web Timing is not enabled. -
trunk/Source/WebCore/ChangeLog
r81084 r81088 1 2011-03-14 Kent Tamura <tkent@chromium.org> 2 3 Reviewed by James Robinson. 4 5 Assertion failure by form validation message for <select required> with float:left 6 https://bugs.webkit.org/show_bug.cgi?id=55995 7 8 Test: fast/forms/interactive-validation-select-crash.html 9 10 * rendering/RenderBlock.cpp: 11 (WebCore::canMergeContiguousAnonymousBlocks): 12 isAnonymousBlock() doesn't mean it is a RenderBlock. We need to check isRenderBlock(). 13 1 14 2011-03-14 Balazs Kelemen <kbalazs@webkit.org> 2 15 -
trunk/Source/WebCore/rendering/RenderBlock.cpp
r80883 r81088 934 934 return false; 935 935 936 if ((prev && (!prev->isAnonymousBlock() || toRenderBlock(prev)->continuation() || toRenderBlock(prev)->beingDestroyed()))937 || (next && (!next->isAnonymousBlock() || toRenderBlock(next)->continuation() || toRenderBlock(next)->beingDestroyed())))936 if ((prev && (!prev->isAnonymousBlock() || !prev->isRenderBlock() || toRenderBlock(prev)->continuation() || toRenderBlock(prev)->beingDestroyed())) 937 || (next && (!next->isAnonymousBlock() || !next->isRenderBlock() || toRenderBlock(next)->continuation() || toRenderBlock(next)->beingDestroyed()))) 938 938 return false; 939 939
Note:
See TracChangeset
for help on using the changeset viewer.