MDL-9137 Fixing errors in the overview report
[moodle-pu.git] / lib / yui / dom / README
blob777503c0896dc442475bec8b35248f77a8ca4fd4
1 Dom Release Notes
3 *** version 2.3.0 ***
4 * added getAncestorBy methods
5 * added getChildren methods
6 * added getSibling methods
7 * trimming added for class mgmt methods
8 * fixed getXY inside table for Opera 
10 ** Known Issues **
11 * margin/padding/borders on HTML element cause getXY to misreport
12 * margin on BODY causes Safari to misreport getXY
13 * Fixed postioning causes getXY to misreport in some cases
15 *** version 2.2.2 ***
17 * fixed getXY scroll regression
19 *** version 2.2.1 ***
20 * fixed toCamel propertyCache used by set/getStyle
21 * added set/getStyle support for float property
22 * optimized get() for common use case
23 * fixed getXY for safari when el has absolute ancestors
24 * using className property instead of string literal for class mgmt methods
25 * added getXY/getRegion support for body element
27 *** version 2.2.0 ***
28 * no change
31 *** version 0.12.2 ***
32 * no change
34 *** version 0.12.1 ***
36 * getElementsByClassName no longer reverts to document when "root" not found
37 * setXY no longer makes a second call to getXY unless noRetry is false
38 * minified version no longer strips line breaks
40 *** version 0.12.0 ***
42 * fixed getXY for IE null parent
43 * branching set/getStyle at load time instead of run time 
45 *** version 0.11.3 ***
47 * fixed getX and getY returning incorrect values for collections 
48 * fixed getXY incorrectly calculated for Opera inline elements
49 * fixed isAncestor failure in safari when 2nd arg is document.documentElement
50 * fixed infinite loop in replaceClass when oldClassName == newClassName 
51 * getDocumentWidth no longer includes scrollbars 
54 *** version 0.11.2 ***
55 * limit depth of parent.document crawl to 1 for getXY
56 * test offsetParent instead of parentNode for getXY
57 * return null if no el fo r get
58 * just addClass if no class to replace for replaceClass
61 *** version 0.11.1 ***
63 * return null if el is null for get()
64 * test offsetParent rather than parentNode for getXY()
65 * limit depth of parent.document crawl for IE getXY() to 1
66 * if no oldClassName to replace, just addClass for replaceClass()
69 *** version 0.11.0 ***
70 * Work around Opera 9 broken currentStyle
71 * Removed timeout wrapper from setXY retry
72 * Tagname tests now case-insensitive
73 * Internal "this" references changed to allow for method shorthand
74 * get/setStyle now accept both camel and hyphen case
75 * Gecko reverted to crawling offsets for getXY
78 *** version 0.10.0 ***
80 * Safari now fails gracefully when querying computedStyle of an unavailable element 
82 * Class management functions added (hasClass, addClass, removeClass, replaceClass, getElementsByClassName) 
84 * All methods that accept HTMLElements or IDs now also accept arrays of HTMLElements and/or IDs
86 * GenerateId method added
88 * isAncestor method added
90 * inDocument method added
92 * getElementsBy method added
94 * batch method added
96 * getClientHeight/Width deprecated in favor of getViewportHeight/Width
98 * getDocumentHeight/Width methods added 
100 *** version 0.9.0 ***
102 * Initial release