From: <asa...@us...> - 2012-12-18 11:49:56
|
Revision: 7876 http://sourceforge.net/p/htmlunit/code/7876 Author: asashour Date: 2012-12-18 11:49:54 +0000 (Tue, 18 Dec 2012) Log Message: ----------- Fixing build Modified Paths: -------------- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/BrowserVersionFeatures.java trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/WebDriverTestCase.java Modified: trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/BrowserVersionFeatures.java =================================================================== --- trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/BrowserVersionFeatures.java 2012-12-18 11:31:21 UTC (rev 7875) +++ trunk/htmlunit/src/main/java/com/gargoylesoftware/htmlunit/BrowserVersionFeatures.java 2012-12-18 11:49:54 UTC (rev 7876) @@ -572,14 +572,14 @@ @BrowserFeature(@WebBrowser(IE)) HTMLCONDITIONAL_COMMENTS, + /** Is document.charset lower-case (and defaultCharset is 'windows-1252'). */ + @BrowserFeature(@WebBrowser(IE)) + HTMLDOCUMENT_CHARSET_LOWERCASE, + /** Do document.bgColor/.alinkColor/.vlinkColor/.linkColor have value by default. */ @BrowserFeature(@WebBrowser(IE)) HTMLDOCUMENT_COLOR, - /** Is document.charset lower-case (and defaultCharset is 'windows-1252'). */ - @BrowserFeature(@WebBrowser(IE)) - HTMLDOCUMENT_CHARSET_LOWERCASE, - /** Allows invalid 'align' values. */ @BrowserFeature({ @WebBrowser(FF), @WebBrowser(CHROME) }) HTMLELEMENT_ALIGN_INVALID, Modified: trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/WebDriverTestCase.java =================================================================== --- trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/WebDriverTestCase.java 2012-12-18 11:31:21 UTC (rev 7875) +++ trunk/htmlunit/src/test/java/com/gargoylesoftware/htmlunit/WebDriverTestCase.java 2012-12-18 11:49:54 UTC (rev 7876) @@ -78,11 +78,11 @@ ff17.bin=/usr/bin/firefox [Unix-like] chrome.bin=/path/to/chromedriver [Unix-like] * </pre> - * The file should contain four properties: "browsers", "ff3.bin", "ff3.6.bin", and "chrome.bin". + * The file should contain four properties: "browsers", "ff3.6.bin", "ff3.17.bin", and "chrome.bin". * <ul> * <li>browsers: is a comma separated list contains any combination of "hu" (for HtmlUnit with all browser versions), * "hu-ie6", "hu-ie7", "hu-ie8", "hu-ie9", "hu-ff3.6", "hu-ff17", - * "ff3.6", "ie6", "ie7", "ie8", "ie9", "chrome", which will be used to driver real browsers, + * "ff3.6", "ff17", "ie6", "ie7", "ie8", "ie9", "chrome", which will be used to driver real browsers, * note that you can't define more than one IE as there is no standard way * to have multiple IEs on the same machine</li> * <li>ff3.6.bin: is the location of the FF3.6 binary, in Windows use double back-slashes</li> |