CruiseControl Build Result
BUILD FAILED
| Date of build | 11/17/2009 15:43:43 |
| Time to build | 103 minute(s) 59 second(s) |
| Last changed | 11/17/2009 15:41:37 |
| Last log entry | help this stupid java 5 compiler |
Ant Error Message
Return code is 1
Unit Tests
Test cases: 10781, passed: 10774, failures: 7, errors: 0.
Failures
- codeStyle
- waitForBackgroundJavaScriptStartingBefore_hangs
- HTMLDocumentTest.write [IE6]
- HTMLDocumentTest.write [IE7]
- HTMLDocumentTest.write [IE8]
- HTMLDocumentTest.write [FF2]
- HTMLDocumentTest.write [FF3]
Unit Test Error Details: (7)
Test: codeStyle
Type:java.lang.AssertionError
Message:CodeStyle 2 errors: Two empty contiguous lines at src/test/java/com/gargoylesoftware/htmlunit/html/DomAttrTest.java, line: 41 Two empty contiguous lines at src/test/java/com/gargoylesoftware/htmlunit/javascript/host/AttrTest.java, line: 140
Test: waitForBackgroundJavaScriptStartingBefore_hangs
Type:org.junit.ComparisonFailure
Message:expected:<[test]> but was:<[failed]>
Test: HTMLDocumentTest.write [IE6]
Type:org.junit.ComparisonFailure
Message:expected:<[[Hello There]]> but was:<[[]]>
Test: HTMLDocumentTest.write [IE7]
Type:org.junit.ComparisonFailure
Message:expected:<[[Hello There]]> but was:<[[]]>
Test: HTMLDocumentTest.write [IE8]
Type:org.junit.ComparisonFailure
Message:expected:<[[Hello There]]> but was:<[[]]>
Test: HTMLDocumentTest.write [FF2]
Type:org.junit.ComparisonFailure
Message:expected:<[[Hello There]]> but was:<[[]]>
Test: HTMLDocumentTest.write [FF3]
Type:org.junit.ComparisonFailure
Message:expected:<[[Hello There]]> but was:<[[]]>
Functional Tests
Szenarios: 0, passed: 0, failed: 0, including 0 single steps.
Modifications
38 modifications since last build.
asashour: JavaScript: write() should have an affect (by implicit postponed call to close()).
Issue 2892533 (11/13/2009 01:27:42)
-
>
/trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/html/HTMLDocument.java
-
>
/trunk/htmlunit/src/changes/changes.xml
-
>
/trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/html/HTMLDocumentTest.java
sdanig: JavaScript: better calculation of element.offsetLeft property (adds CAN_INHERIT_CSS_PROPERTY_VALUES and TREATS_POSITION_FIXED_LIKE_POSITION_STATIC browser features). Also moves offset-related tests from HTMLElementTest to HTMLElement2Test, so that they can be run via WebDriver.
Issue 2888451 (11/13/2009 19:46:44)
-
>
/trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/BrowserVersionFeatures.java
-
>
/trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/css/ComputedCSSStyleDeclaration.java
-
>
/trunk/htmlunit/src/main/resources/com/gargoylesoftware/htmlunit/javascript/configuration/FF2.properties
-
>
/trunk/htmlunit/src/main/resources/com/gargoylesoftware/htmlunit/javascript/configuration/FF3.properties
-
>
/trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/html/HTMLElementTest.java
-
>
/trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/html/HTMLElement2Test.java
-
>
/trunk/htmlunit/src/changes/changes.xml
-
>
/trunk/htmlunit/src/main/resources/com/gargoylesoftware/htmlunit/javascript/configuration/IE6.properties
-
>
/trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/html/HTMLElement.java
-
>
/trunk/htmlunit/src/main/resources/com/gargoylesoftware/htmlunit/javascript/configuration/IE7.properties
-
>
/trunk/htmlunit/src/main/resources/com/gargoylesoftware/htmlunit/javascript/configuration/IE8.properties
sdanig: whoops, didn't realize that we had tests checking the browser version feature ordering (11/13/2009 21:32:59)
-
>
/trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/BrowserVersionFeatures.java
-
>
/trunk/htmlunit/src/main/resources/com/gargoylesoftware/htmlunit/javascript/configuration/FF2.properties
-
>
/trunk/htmlunit/src/main/resources/com/gargoylesoftware/htmlunit/javascript/configuration/FF3.properties
-
>
/trunk/htmlunit/src/main/resources/com/gargoylesoftware/htmlunit/javascript/configuration/IE8.properties
asashour: Some docs additions (11/15/2009 20:43:28)
-
>
/trunk/htmlunit/src/site/xdoc/submittingJSBugs.xml
-
>
/trunk/htmlunit/src/site/xdoc/gettingStarted.xml
asashour: - checkstyle
- HTMLDocumentTest succeeds locally with Eclipse and maven, may be the reason is the tests order :( (11/15/2009 21:16:33)
-
>
/trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/html/HTMLElement2Test.java
sdanig: IE8 expectations confirmed by Ahmed (thanks!).
Issue 2888451 (11/15/2009 21:33:56)
-
>
/trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/html/HTMLElement2Test.java
-
>
/trunk/htmlunit/src/main/resources/com/gargoylesoftware/htmlunit/javascript/configuration/IE8.properties
mguillem: - Implement setter and getter for textContent on DomAttr.
- JavaScript: fix exception accessing selectionStart and selectionEnd on inputs of type password. (11/17/2009 10:09:32)
-
>
/trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/Node.java
-
>
/trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/html/HtmlTextInputTest.java
-
>
/trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/AttrTest.java
-
>
/trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/html/DomNode.java
-
>
/trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/html/DomAttrTest.java
-
>
/trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/html/HtmlPasswordInput.java
-
>
/trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/html/DomAttr.java
-
>
/trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/html/HtmlElement.java
-
>
/trunk/htmlunit/src/main/resources/com/gargoylesoftware/htmlunit/javascript/configuration/JavaScriptConfiguration.xml
-
>
/trunk/htmlunit/src/changes/changes.xml
-
>
/trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/html/HtmlPage.java
-
>
/trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/html/HTMLElement.java
-
>
/trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/html/HTMLInputElement.java
mguillem: checkstyle (11/17/2009 10:10:47)
-
>
/trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/javascript/host/html/HTMLElement2Test.java
mguillem: help this stupid java 5 compiler (11/17/2009 15:41:37)
-
>
/trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/javascript/host/Node.java
------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus on
what you do best, core application coding. Discover what's new with
Crystal Reports now.
http://p.sf.net/sfu/bobj-july_______________________________________________
HtmlUnit-develop mailing list
HtmlUnit-develop@...
https://lists.sourceforge.net/lists/listinfo/htmlunit-develop