[HtmlUnit] SVN: [15387] trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1
rbri--- via HtmlUnit-develop <[email protected]>
| Newsgroups | gmane.comp.java.htmlunit.devel |
|---|---|
| Message-ID | <[email protected]> |
Revision: 15387
http://sourceforge.net/p/htmlunit/code/15387
Author: rbri
Date: 2018-06-27 06:36:31 +0000 (Wed, 27 Jun 2018)
Log Message:
-----------
ff60 support (wip)
Added Paths:
-----------
trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Iter.FF52.expected.txt
trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Iter.expected.txt
trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.CHROME.expected.txt
trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.expected.txt
Removed Paths:
-------------
trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Iter.Chrome.expected.txt
trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Iter.expected.txt
trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.FF45.expected.txt
trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.FF52.expected.txt
trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.IE.expected.txt
trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.expected.txt
Deleted: trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Iter.Chrome.expected.txt
===================================================================
--- trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Iter.Chrome.expected.txt 2018-06-26 19:28:29 UTC (rev 15386)
+++ trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Iter.Chrome.expected.txt 2018-06-27 06:36:31 UTC (rev 15387)
@@ -1,70 +0,0 @@
-Passed: 68
-Failed: 0
-ok - sum works on Arrays
-ok - list([x]) == [x]
-ok - list(range(6, 0, -1)
-ok - list(range(6))
-ok - sum(ifilter(, range()))
-ok - sum(ifilterfalse(, range()))
-ok - count()
-ok - cycle()
-ok - repeat()
-ok - izip()
-ok - range(x)
-ok - islice(x, y, z)
-ok - imap(fn, p, q)
-ok - filter(fn, iterable)
-ok - map(fn, iterable)
-ok - map(fn, iterable, q)
-ok - map(fn, iterable, iterable)
-ok - applymap()
-ok - applymap(self)
-ok - chain(p, q)
-ok - takewhile()
-ok - dropwhile()
-ok - tee(..., 3) p0 == p1
-ok - tee(..., 3) p2 == fixed
-ok - reduce(op.add)
-ok - reduce raised TypeError correctly
-ok - range initial value OK empty
-ok - range initial value OK populated
-ok - iextend(...)
-ok - iextend handles array-like iterables
-ok - exhaust(...)
-ok - every false
-ok - every true
-ok - some true
-ok - some false
-ok - some true
-ok - forEach works bound
-ok - forEach works unbound
-ok - forEach handles array-like iterables
-ok - sorted default
-ok - sorted custom
-ok - reversed iterator
-ok - reversed list
-ok - iterateNext
-ok - raised StopIteration correctly
-ok - odd(2) = odd(4) = odd(6) == 0
-ok - sub-iterator.next() == 2
-ok - sub-iterator.next() == 4
-ok - sub-iterator.next() == 6
-ok - raised StopIteration correctly
-ok - odd(7) == 1
-ok - sub-iterator.next() == 7
-ok - raised StopIteration correctly
-ok - 0 = odd(2) = odd(4) = odd(6)
-ok - 1 = odd(7)
-ok - raised StopIteration correctly
-ok - odd(1) == 1
-ok - sub-iterator.next() == 3
-ok - skip (1,1), odd(2) == 0
-ok - raised StopIteration correctly
-ok - null ok
-ok - empty
-ok - [1,1,1]: [1,1,1]
-ok - [1,2,2]: [1], [2,2]
-ok - [1,1,2]: [1,1], [2]
-ok - [null,null]: [null,null]
-ok - [1,1,3,2,4,6,7] odd: [1,1,3], [2,4,6,8]
-ok - test suite finished!
\ No newline at end of file
Copied: trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Iter.FF52.expected.txt (from rev 15386, trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Iter.expected.txt)
===================================================================
--- trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Iter.FF52.expected.txt (rev 0)
+++ trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Iter.FF52.expected.txt 2018-06-27 06:36:31 UTC (rev 15387)
@@ -0,0 +1,70 @@
+Passed: 68
+Failed: 0
+ok - sum works on Arrays
+ok - list([x]) == [x]
+ok - list(range(6, 0, -1)
+ok - list(range(6))
+ok - sum(ifilter(, range()))
+ok - sum(ifilterfalse(, range()))
+ok - count()
+ok - cycle()
+ok - repeat()
+ok - izip()
+ok - range(x)
+ok - islice(x, y, z)
+ok - imap(fn, p, q)
+ok - filter(fn, iterable)
+ok - map(fn, iterable)
+ok - map(fn, iterable, q)
+ok - map(fn, iterable, iterable)
+ok - applymap()
+ok - applymap(self)
+ok - chain(p, q)
+ok - takewhile()
+ok - dropwhile()
+ok - tee(..., 3) p0 == p1
+ok - tee(..., 3) p2 == fixed
+ok - reduce(op.add)
+ok - reduce raised TypeError correctly
+ok - range initial value OK empty
+ok - range initial value OK populated
+ok - iextend(...)
+ok - iextend handles array-like iterables
+ok - exhaust(...)
+ok - every false
+ok - every true
+ok - some true
+ok - some false
+ok - some true
+ok - forEach works bound
+ok - forEach works unbound
+ok - forEach handles array-like iterables
+ok - sorted default
+ok - sorted custom
+ok - reversed iterator
+ok - reversed list
+ok - iterateNext
+ok - raised undefined correctly
+ok - odd(2) = odd(4) = odd(6) == 0
+ok - sub-iterator.next() == 2
+ok - sub-iterator.next() == 4
+ok - sub-iterator.next() == 6
+ok - raised undefined correctly
+ok - odd(7) == 1
+ok - sub-iterator.next() == 7
+ok - raised undefined correctly
+ok - 0 = odd(2) = odd(4) = odd(6)
+ok - 1 = odd(7)
+ok - raised undefined correctly
+ok - odd(1) == 1
+ok - sub-iterator.next() == 3
+ok - skip (1,1), odd(2) == 0
+ok - raised undefined correctly
+ok - null ok
+ok - empty
+ok - [1,1,1]: [1,1,1]
+ok - [1,2,2]: [1], [2,2]
+ok - [1,1,2]: [1,1], [2]
+ok - [null,null]: [null,null]
+ok - [1,1,3,2,4,6,7] odd: [1,1,3], [2,4,6,8]
+ok - test suite finished!
\ No newline at end of file
Deleted: trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Iter.expected.txt
===================================================================
--- trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Iter.expected.txt 2018-06-26 19:28:29 UTC (rev 15386)
+++ trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Iter.expected.txt 2018-06-27 06:36:31 UTC (rev 15387)
@@ -1,70 +0,0 @@
-Passed: 68
-Failed: 0
-ok - sum works on Arrays
-ok - list([x]) == [x]
-ok - list(range(6, 0, -1)
-ok - list(range(6))
-ok - sum(ifilter(, range()))
-ok - sum(ifilterfalse(, range()))
-ok - count()
-ok - cycle()
-ok - repeat()
-ok - izip()
-ok - range(x)
-ok - islice(x, y, z)
-ok - imap(fn, p, q)
-ok - filter(fn, iterable)
-ok - map(fn, iterable)
-ok - map(fn, iterable, q)
-ok - map(fn, iterable, iterable)
-ok - applymap()
-ok - applymap(self)
-ok - chain(p, q)
-ok - takewhile()
-ok - dropwhile()
-ok - tee(..., 3) p0 == p1
-ok - tee(..., 3) p2 == fixed
-ok - reduce(op.add)
-ok - reduce raised TypeError correctly
-ok - range initial value OK empty
-ok - range initial value OK populated
-ok - iextend(...)
-ok - iextend handles array-like iterables
-ok - exhaust(...)
-ok - every false
-ok - every true
-ok - some true
-ok - some false
-ok - some true
-ok - forEach works bound
-ok - forEach works unbound
-ok - forEach handles array-like iterables
-ok - sorted default
-ok - sorted custom
-ok - reversed iterator
-ok - reversed list
-ok - iterateNext
-ok - raised undefined correctly
-ok - odd(2) = odd(4) = odd(6) == 0
-ok - sub-iterator.next() == 2
-ok - sub-iterator.next() == 4
-ok - sub-iterator.next() == 6
-ok - raised undefined correctly
-ok - odd(7) == 1
-ok - sub-iterator.next() == 7
-ok - raised undefined correctly
-ok - 0 = odd(2) = odd(4) = odd(6)
-ok - 1 = odd(7)
-ok - raised undefined correctly
-ok - odd(1) == 1
-ok - sub-iterator.next() == 3
-ok - skip (1,1), odd(2) == 0
-ok - raised undefined correctly
-ok - null ok
-ok - empty
-ok - [1,1,1]: [1,1,1]
-ok - [1,2,2]: [1], [2,2]
-ok - [1,1,2]: [1,1], [2]
-ok - [null,null]: [null,null]
-ok - [1,1,3,2,4,6,7] odd: [1,1,3], [2,4,6,8]
-ok - test suite finished!
\ No newline at end of file
Copied: trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Iter.expected.txt (from rev 15386, trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Iter.Chrome.expected.txt)
===================================================================
--- trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Iter.expected.txt (rev 0)
+++ trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Iter.expected.txt 2018-06-27 06:36:31 UTC (rev 15387)
@@ -0,0 +1,70 @@
+Passed: 68
+Failed: 0
+ok - sum works on Arrays
+ok - list([x]) == [x]
+ok - list(range(6, 0, -1)
+ok - list(range(6))
+ok - sum(ifilter(, range()))
+ok - sum(ifilterfalse(, range()))
+ok - count()
+ok - cycle()
+ok - repeat()
+ok - izip()
+ok - range(x)
+ok - islice(x, y, z)
+ok - imap(fn, p, q)
+ok - filter(fn, iterable)
+ok - map(fn, iterable)
+ok - map(fn, iterable, q)
+ok - map(fn, iterable, iterable)
+ok - applymap()
+ok - applymap(self)
+ok - chain(p, q)
+ok - takewhile()
+ok - dropwhile()
+ok - tee(..., 3) p0 == p1
+ok - tee(..., 3) p2 == fixed
+ok - reduce(op.add)
+ok - reduce raised TypeError correctly
+ok - range initial value OK empty
+ok - range initial value OK populated
+ok - iextend(...)
+ok - iextend handles array-like iterables
+ok - exhaust(...)
+ok - every false
+ok - every true
+ok - some true
+ok - some false
+ok - some true
+ok - forEach works bound
+ok - forEach works unbound
+ok - forEach handles array-like iterables
+ok - sorted default
+ok - sorted custom
+ok - reversed iterator
+ok - reversed list
+ok - iterateNext
+ok - raised StopIteration correctly
+ok - odd(2) = odd(4) = odd(6) == 0
+ok - sub-iterator.next() == 2
+ok - sub-iterator.next() == 4
+ok - sub-iterator.next() == 6
+ok - raised StopIteration correctly
+ok - odd(7) == 1
+ok - sub-iterator.next() == 7
+ok - raised StopIteration correctly
+ok - 0 = odd(2) = odd(4) = odd(6)
+ok - 1 = odd(7)
+ok - raised StopIteration correctly
+ok - odd(1) == 1
+ok - sub-iterator.next() == 3
+ok - skip (1,1), odd(2) == 0
+ok - raised StopIteration correctly
+ok - null ok
+ok - empty
+ok - [1,1,1]: [1,1,1]
+ok - [1,2,2]: [1], [2,2]
+ok - [1,1,2]: [1,1], [2]
+ok - [null,null]: [null,null]
+ok - [1,1,3,2,4,6,7] odd: [1,1,3], [2,4,6,8]
+ok - test suite finished!
\ No newline at end of file
Copied: trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.CHROME.expected.txt (from rev 15386, trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.expected.txt)
===================================================================
--- trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.CHROME.expected.txt (rev 0)
+++ trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.CHROME.expected.txt 2018-06-27 06:36:31 UTC (rev 15387)
@@ -0,0 +1,67 @@
+Passed: 65
+Failed: 0
+ok - initial x position
+ok - initial y position
+ok - x position with offsetParent border
+ok - y position with offsetParent border
+ok - updated x position
+ok - updated y position
+ok - updated x position (using relativeTo parameter)
+ok - updated y position (using relativeTo parameter)
+ok - passthrough x position
+ok - passthrough y position
+ok - passthrough x position (using relativeTo parameter)
+ok - passthrough y position (using relativeTo parameter)
+ok - invalid element should return an undefined position
+ok - updated only x position
+ok - not updated y position
+ok - test getStyle selector case
+ok - test getStyle camel case
+ok - test computed getStyle selector case
+ok - test computed getStyle camel case
+ok - test getStyle opacity
+ok - test getOpacity
+ok - test setOpacity
+ok - test setOpacity
+ok - test setOpacity
+ok - getStyle of float
+ok - getStyle of cssFloat
+ok - getStyle of styleFloat
+ok - getStyle of float when unset
+ok - setStyle of CSS float
+ok - setStyle of CSS cssFloat
+ok - setStyle of CSS styleFloat
+ok - getElementDimensions w ok
+ok - getElementDimensions h ok
+ok - getElementDimensions content w ok
+ok - getElementDimensions content h ok
+ok - setElementDimensions w ok
+ok - setElementDimensions h ok
+ok - setElementDimensions only w ok
+ok - setElementDimensions h not updated ok
+ok - getElementDimensions w ok when display none
+ok - getElementDimensions h ok when display none
+ok - getElementDimensions w ok when CSS display none
+ok - getElementDimensions h ok when CSS display none
+ok - getElementDimensions modified element display
+ok - test getViewportDimensions w
+ok - test getViewportDimensions h
+ok - test getViewportPosition x
+ok - test getViewportPosition y
+ok - default left table cell content w ok
+ok - default left table cell content h ok
+ok - default middle table cell content w ok
+ok - default middle table cell content h ok
+ok - default right table cell content w ok
+ok - default right table cell content h ok
+ok - collapsed left table cell content w ok
+ok - collapsed left table cell content h ok
+ok - collapsed middle table cell content w ok
+ok - collapsed middle table cell content h ok
+ok - collapsed right table cell content w ok
+ok - collapsed right table cell content h ok
+ok - make clipping on overflow-x
+ok - make clipping on overflow-y
+ok - undo clipping on overflow-x
+ok - undo clipping on overflow-y
+ok - test suite finished!
\ No newline at end of file
Deleted: trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.FF45.expected.txt
===================================================================
--- trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.FF45.expected.txt 2018-06-26 19:28:29 UTC (rev 15386)
+++ trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.FF45.expected.txt 2018-06-27 06:36:31 UTC (rev 15387)
@@ -1,61 +0,0 @@
-Passed: 59
-Failed: 6
-ok - initial x position
-ok - initial y position
-ok - x position with offsetParent border
-ok - y position with offsetParent border
-ok - updated x position
-ok - updated y position
-ok - updated x position (using relativeTo parameter)
-ok - updated y position (using relativeTo parameter)
-ok - passthrough x position
-ok - passthrough y position
-ok - passthrough x position (using relativeTo parameter)
-ok - passthrough y position (using relativeTo parameter)
-ok - invalid element should return an undefined position
-ok - updated only x position
-ok - not updated y position
-ok - test getStyle selector case
-ok - test getStyle camel case
-ok - test computed getStyle selector case
-ok - test computed getStyle camel case
-ok - test getStyle opacity
-ok - test getOpacity
-ok - test setOpacity
-ok - test setOpacity
-ok - test setOpacity
-ok - getStyle of float
-ok - getStyle of cssFloat
-ok - getStyle of styleFloat
-ok - getStyle of float when unset
-ok - setStyle of CSS float
-ok - setStyle of CSS cssFloat
-ok - setStyle of CSS styleFloat
-ok - getElementDimensions w ok
-ok - getElementDimensions h ok
-ok - getElementDimensions content w ok
-ok - getElementDimensions content h ok
-ok - setElementDimensions w ok
-ok - setElementDimensions h ok
-ok - setElementDimensions only w ok
-ok - setElementDimensions h not updated ok
-ok - getElementDimensions w ok when display none
-ok - getElementDimensions h ok when display none
-ok - getElementDimensions w ok when CSS display none
-ok - getElementDimensions h ok when CSS display none
-ok - getElementDimensions modified element display
-ok - test getViewportDimensions w
-ok - test getViewportDimensions h
-ok - test getViewportPosition x
-ok - test getViewportPosition y
-ok - default left table cell content w ok
-ok - default middle table cell content w ok
-ok - default right table cell content w ok
-ok - collapsed left table cell content w ok
-ok - collapsed middle table cell content w ok
-ok - collapsed right table cell content w ok
-ok - make clipping on overflow-x
-ok - make clipping on overflow-y
-ok - undo clipping on overflow-x
-ok - undo clipping on overflow-y
-ok - test suite finished!
\ No newline at end of file
Deleted: trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.FF52.expected.txt
===================================================================
--- trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.FF52.expected.txt 2018-06-26 19:28:29 UTC (rev 15386)
+++ trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.FF52.expected.txt 2018-06-27 06:36:31 UTC (rev 15387)
@@ -1,61 +0,0 @@
-Passed: 59
-Failed: 6
-ok - initial x position
-ok - initial y position
-ok - x position with offsetParent border
-ok - y position with offsetParent border
-ok - updated x position
-ok - updated y position
-ok - updated x position (using relativeTo parameter)
-ok - updated y position (using relativeTo parameter)
-ok - passthrough x position
-ok - passthrough y position
-ok - passthrough x position (using relativeTo parameter)
-ok - passthrough y position (using relativeTo parameter)
-ok - invalid element should return an undefined position
-ok - updated only x position
-ok - not updated y position
-ok - test getStyle selector case
-ok - test getStyle camel case
-ok - test computed getStyle selector case
-ok - test computed getStyle camel case
-ok - test getStyle opacity
-ok - test getOpacity
-ok - test setOpacity
-ok - test setOpacity
-ok - test setOpacity
-ok - getStyle of float
-ok - getStyle of cssFloat
-ok - getStyle of styleFloat
-ok - getStyle of float when unset
-ok - setStyle of CSS float
-ok - setStyle of CSS cssFloat
-ok - setStyle of CSS styleFloat
-ok - getElementDimensions w ok
-ok - getElementDimensions h ok
-ok - getElementDimensions content w ok
-ok - getElementDimensions content h ok
-ok - setElementDimensions w ok
-ok - setElementDimensions h ok
-ok - setElementDimensions only w ok
-ok - setElementDimensions h not updated ok
-ok - getElementDimensions w ok when display none
-ok - getElementDimensions h ok when display none
-ok - getElementDimensions w ok when CSS display none
-ok - getElementDimensions h ok when CSS display none
-ok - getElementDimensions modified element display
-ok - test getViewportDimensions w
-ok - test getViewportDimensions h
-ok - test getViewportPosition x
-ok - test getViewportPosition y
-ok - default left table cell content w ok
-ok - default middle table cell content w ok
-ok - default right table cell content w ok
-ok - collapsed left table cell content w ok
-ok - collapsed middle table cell content w ok
-ok - collapsed right table cell content w ok
-ok - make clipping on overflow-x
-ok - make clipping on overflow-y
-ok - undo clipping on overflow-x
-ok - undo clipping on overflow-y
-ok - test suite finished!
\ No newline at end of file
Deleted: trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.IE.expected.txt
===================================================================
--- trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.IE.expected.txt 2018-06-26 19:28:29 UTC (rev 15386)
+++ trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.IE.expected.txt 2018-06-27 06:36:31 UTC (rev 15387)
@@ -1,61 +0,0 @@
-Passed: 59
-Failed: 6
-ok - initial x position
-ok - initial y position
-ok - x position with offsetParent border
-ok - y position with offsetParent border
-ok - updated x position
-ok - updated y position
-ok - updated x position (using relativeTo parameter)
-ok - updated y position (using relativeTo parameter)
-ok - passthrough x position
-ok - passthrough y position
-ok - passthrough x position (using relativeTo parameter)
-ok - passthrough y position (using relativeTo parameter)
-ok - invalid element should return an undefined position
-ok - updated only x position
-ok - not updated y position
-ok - test getStyle selector case
-ok - test getStyle camel case
-ok - test computed getStyle selector case
-ok - test computed getStyle camel case
-ok - test getStyle opacity
-ok - test getOpacity
-ok - test setOpacity
-ok - test setOpacity
-ok - test setOpacity
-ok - getStyle of float
-ok - getStyle of cssFloat
-ok - getStyle of styleFloat
-ok - getStyle of float when unset
-ok - setStyle of CSS float
-ok - setStyle of CSS cssFloat
-ok - setStyle of CSS styleFloat
-ok - getElementDimensions w ok
-ok - getElementDimensions h ok
-ok - getElementDimensions content w ok
-ok - getElementDimensions content h ok
-ok - setElementDimensions w ok
-ok - setElementDimensions h ok
-ok - setElementDimensions only w ok
-ok - setElementDimensions h not updated ok
-ok - getElementDimensions w ok when display none
-ok - getElementDimensions h ok when display none
-ok - getElementDimensions w ok when CSS display none
-ok - getElementDimensions h ok when CSS display none
-ok - getElementDimensions modified element display
-ok - test getViewportDimensions w
-ok - test getViewportDimensions h
-ok - test getViewportPosition x
-ok - test getViewportPosition y
-ok - default left table cell content w ok
-ok - default middle table cell content w ok
-ok - default right table cell content w ok
-ok - collapsed left table cell content w ok
-ok - collapsed middle table cell content w ok
-ok - collapsed right table cell content w ok
-ok - make clipping on overflow-x
-ok - make clipping on overflow-y
-ok - undo clipping on overflow-x
-ok - undo clipping on overflow-y
-ok - test suite finished!
\ No newline at end of file
Deleted: trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.expected.txt
===================================================================
--- trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.expected.txt 2018-06-26 19:28:29 UTC (rev 15386)
+++ trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.expected.txt 2018-06-27 06:36:31 UTC (rev 15387)
@@ -1,67 +0,0 @@
-Passed: 65
-Failed: 0
-ok - initial x position
-ok - initial y position
-ok - x position with offsetParent border
-ok - y position with offsetParent border
-ok - updated x position
-ok - updated y position
-ok - updated x position (using relativeTo parameter)
-ok - updated y position (using relativeTo parameter)
-ok - passthrough x position
-ok - passthrough y position
-ok - passthrough x position (using relativeTo parameter)
-ok - passthrough y position (using relativeTo parameter)
-ok - invalid element should return an undefined position
-ok - updated only x position
-ok - not updated y position
-ok - test getStyle selector case
-ok - test getStyle camel case
-ok - test computed getStyle selector case
-ok - test computed getStyle camel case
-ok - test getStyle opacity
-ok - test getOpacity
-ok - test setOpacity
-ok - test setOpacity
-ok - test setOpacity
-ok - getStyle of float
-ok - getStyle of cssFloat
-ok - getStyle of styleFloat
-ok - getStyle of float when unset
-ok - setStyle of CSS float
-ok - setStyle of CSS cssFloat
-ok - setStyle of CSS styleFloat
-ok - getElementDimensions w ok
-ok - getElementDimensions h ok
-ok - getElementDimensions content w ok
-ok - getElementDimensions content h ok
-ok - setElementDimensions w ok
-ok - setElementDimensions h ok
-ok - setElementDimensions only w ok
-ok - setElementDimensions h not updated ok
-ok - getElementDimensions w ok when display none
-ok - getElementDimensions h ok when display none
-ok - getElementDimensions w ok when CSS display none
-ok - getElementDimensions h ok when CSS display none
-ok - getElementDimensions modified element display
-ok - test getViewportDimensions w
-ok - test getViewportDimensions h
-ok - test getViewportPosition x
-ok - test getViewportPosition y
-ok - default left table cell content w ok
-ok - default left table cell content h ok
-ok - default middle table cell content w ok
-ok - default middle table cell content h ok
-ok - default right table cell content w ok
-ok - default right table cell content h ok
-ok - collapsed left table cell content w ok
-ok - collapsed left table cell content h ok
-ok - collapsed middle table cell content w ok
-ok - collapsed middle table cell content h ok
-ok - collapsed right table cell content w ok
-ok - collapsed right table cell content h ok
-ok - make clipping on overflow-x
-ok - make clipping on overflow-y
-ok - undo clipping on overflow-x
-ok - undo clipping on overflow-y
-ok - test suite finished!
\ No newline at end of file
Copied: trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.expected.txt (from rev 15386, trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.IE.expected.txt)
===================================================================
--- trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.expected.txt (rev 0)
+++ trunk/htmlunit/src/test/resources/libraries/MochiKit/1.4.1/test-Style.expected.txt 2018-06-27 06:36:31 UTC (rev 15387)
@@ -0,0 +1,61 @@
+Passed: 59
+Failed: 6
+ok - initial x position
+ok - initial y position
+ok - x position with offsetParent border
+ok - y position with offsetParent border
+ok - updated x position
+ok - updated y position
+ok - updated x position (using relativeTo parameter)
+ok - updated y position (using relativeTo parameter)
+ok - passthrough x position
+ok - passthrough y position
+ok - passthrough x position (using relativeTo parameter)
+ok - passthrough y position (using relativeTo parameter)
+ok - invalid element should return an undefined position
+ok - updated only x position
+ok - not updated y position
+ok - test getStyle selector case
+ok - test getStyle camel case
+ok - test computed getStyle selector case
+ok - test computed getStyle camel case
+ok - test getStyle opacity
+ok - test getOpacity
+ok - test setOpacity
+ok - test setOpacity
+ok - test setOpacity
+ok - getStyle of float
+ok - getStyle of cssFloat
+ok - getStyle of styleFloat
+ok - getStyle of float when unset
+ok - setStyle of CSS float
+ok - setStyle of CSS cssFloat
+ok - setStyle of CSS styleFloat
+ok - getElementDimensions w ok
+ok - getElementDimensions h ok
+ok - getElementDimensions content w ok
+ok - getElementDimensions content h ok
+ok - setElementDimensions w ok
+ok - setElementDimensions h ok
+ok - setElementDimensions only w ok
+ok - setElementDimensions h not updated ok
+ok - getElementDimensions w ok when display none
+ok - getElementDimensions h ok when display none
+ok - getElementDimensions w ok when CSS display none
+ok - getElementDimensions h ok when CSS display none
+ok - getElementDimensions modified element display
+ok - test getViewportDimensions w
+ok - test getViewportDimensions h
+ok - test getViewportPosition x
+ok - test getViewportPosition y
+ok - default left table cell content w ok
+ok - default middle table cell content w ok
+ok - default right table cell content w ok
+ok - collapsed left table cell content w ok
+ok - collapsed middle table cell content w ok
+ok - collapsed right table cell content w ok
+ok - make clipping on overflow-x
+ok - make clipping on overflow-y
+ok - undo clipping on overflow-x
+ok - undo clipping on overflow-y
+ok - test suite finished!
\ No newline at end of file
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot