diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog index 18925127d5d0e78c46a8823d1cecf8c04b0eb6a7..1b39bb7c1dce85abeb0354e6fce5e7f66b748e9e 100644 --- a/LayoutTests/ChangeLog +++ b/LayoutTests/ChangeLog @@ -1,3 +1,13 @@ +2009-06-21 Dan Bernstein + + Reviewed by Sam Weinig. + + - test for https://bugs.webkit.org/show_bug.cgi?id=9694 + resize value not compared + + * fast/css/resize-value-compared-expected.txt: Added. + * fast/css/resize-value-compared.html: Added. + 2009-06-21 Darin Adler * platform/gtk/Skipped: Skip one more test. diff --git a/LayoutTests/fast/css/resize-value-compared-expected.txt b/LayoutTests/fast/css/resize-value-compared-expected.txt new file mode 100644 index 0000000000000000000000000000000000000000..634aa0fd7a95b851a9514c3f70fc363c646f9b2b --- /dev/null +++ b/LayoutTests/fast/css/resize-value-compared-expected.txt @@ -0,0 +1,6 @@ +Test for https://bugs.webkit.org/show_bug.cgi?id=9694 resize value not compared. + +This box should have a working resize corner: + +PASS + diff --git a/LayoutTests/fast/css/resize-value-compared.html b/LayoutTests/fast/css/resize-value-compared.html new file mode 100644 index 0000000000000000000000000000000000000000..8c6ca8fc0cdae946a5f749373d1f9a5fb679af06 --- /dev/null +++ b/LayoutTests/fast/css/resize-value-compared.html @@ -0,0 +1,23 @@ +

+ Test for https://bugs.webkit.org/show_bug.cgi?id=9694 + resize value not compared. +

+

+ This box should have a working resize corner: +

+
+

+
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 2889c17aa9a4dcf4d0d5a360a1f7c1db8134409b..d20370a817b2bc51d05e2b12c89bc62f0362a846 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2009-06-21  Dan Bernstein  
+
+        Reviewed by Sam Weinig.
+
+        - fix https://bugs.webkit.org/show_bug.cgi?id=9694
+          resize value not compared
+
+        Test: fast/css/resize-value-compared.html
+
+        * rendering/style/StyleRareInheritedData.cpp:
+        (WebCore::StyleRareInheritedData::operator==): Compare the resize
+        member.
+
 2009-06-19  Alice Liu  
 
         Fix https://bugs.webkit.org/show_bug.cgi?id=26568 
diff --git a/WebCore/rendering/style/StyleRareInheritedData.cpp b/WebCore/rendering/style/StyleRareInheritedData.cpp
index 790799bc79930658554076e088e19f4e031078df..ce21720c5b9f05a031a4f8eb11b674f7275ce8f9 100644
--- a/WebCore/rendering/style/StyleRareInheritedData.cpp
+++ b/WebCore/rendering/style/StyleRareInheritedData.cpp
@@ -80,6 +80,7 @@ bool StyleRareInheritedData::operator==(const StyleRareInheritedData& o) const
         && nbspMode == o.nbspMode
         && khtmlLineBreak == o.khtmlLineBreak
         && textSizeAdjust == o.textSizeAdjust
+        && resize == o.resize
         && userSelect == o.userSelect;
 }