~ubuntu-branches/ubuntu/natty/otrs2/natty-updates

« back to all changes in this revision

Viewing changes to var/httpd/htdocs/yui/2.7.0/releasenotes/README.dom

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2010-08-09 19:43:44 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20100809194344-absef1ut5mfj3qhv
Tags: 2.4.7+dfsg1-1
* Strip out yui from the source in the dfsg version.
  Closes: #591196
* Depend on libjs-yui and link to this package, instead of using the embedded
  yui version. This changes make the flash ticket statistics unuseable!
  Closes: #592146

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Dom Release Notes
2
 
 
3
 
** Known Issues **
4
 
* margin/padding/borders on HTML element cause getXY to misreport
5
 
* margin/borders on BODY element may cause getXY to misreport
6
 
* Fixed postioning causes getXY to misreport in some cases
7
 
 
8
 
----------------------------
9
 
*** version 2.7.0 ***
10
 
* get() now works with Element instances
11
 
* added getComputedStyle method
12
 
* backported getXY/setXY from 3.0
13
 
* hasClass/removeClass/replaceClass now accept regex object as target class
14
 
* added getElementBy method
15
 
* added setAttribute/getAttribute methods
16
 
* added height and width properties to Region
17
 
 
18
 
*** version 2.6.0 ***
19
 
* now rounding getXY return for clientRect branch
20
 
* now trimming className arg in getElementsByClassName
21
 
* class attribute now removed if empty after removeClass
22
 
* normalized isAncestor (needle === haystack no longer returns true in some browsers) 
23
 
 
24
 
*** version 2.5.2 ***
25
 
* no change
26
 
 
27
 
*** version 2.5.1 ***
28
 
* getStyle fix for getting computedStyle across documents
29
 
 
30
 
*** version 2.5.0 ***
31
 
* get() now correctly handles textNodes
32
 
 
33
 
*** version 2.4.0 ***
34
 
* no longer accounting for safari body margin when offsetParent == body
35
 
* isAncestor and inDocument no longer use batch
36
 
* added getClientRegion()
37
 
 
38
 
*** version 2.3.1 ***
39
 
* allow batch() to work on array-like object
40
 
* return null from Dom.get(undefined)
41
 
 
42
 
*** version 2.3.0 ***
43
 
* added getAncestorBy methods
44
 
* added getChildren methods
45
 
* added getSibling methods
46
 
* trimming added for class mgmt methods
47
 
* fixed getXY inside table for Opera 
48
 
 
49
 
*** version 2.3.0 ***
50
 
* added getAncestorBy methods
51
 
* added getChildren methods
52
 
* added getSibling methods
53
 
* trimming added for class mgmt methods
54
 
* fixed getXY inside table for Opera 
55
 
 
56
 
*** version 2.2.2 ***
57
 
 
58
 
* fixed getXY scroll regression
59
 
 
60
 
*** version 2.2.1 ***
61
 
* fixed toCamel propertyCache used by set/getStyle
62
 
* added set/getStyle support for float property
63
 
* optimized get() for common use case
64
 
* fixed getXY for safari when el has absolute ancestors
65
 
* using className property instead of string literal for class mgmt methods
66
 
* added getXY/getRegion support for body element
67
 
 
68
 
*** version 2.2.0 ***
69
 
* no change
70
 
 
71
 
 
72
 
*** version 0.12.2 ***
73
 
* no change
74
 
 
75
 
*** version 0.12.1 ***
76
 
 
77
 
* getElementsByClassName no longer reverts to document when "root" not found
78
 
* setXY no longer makes a second call to getXY unless noRetry is false
79
 
* minified version no longer strips line breaks
80
 
 
81
 
*** version 0.12.0 ***
82
 
 
83
 
* fixed getXY for IE null parent
84
 
* branching set/getStyle at load time instead of run time 
85
 
 
86
 
*** version 0.11.3 ***
87
 
 
88
 
* fixed getX and getY returning incorrect values for collections 
89
 
* fixed getXY incorrectly calculated for Opera inline elements
90
 
* fixed isAncestor failure in safari when 2nd arg is document.documentElement
91
 
* fixed infinite loop in replaceClass when oldClassName == newClassName 
92
 
* getDocumentWidth no longer includes scrollbars 
93
 
 
94
 
 
95
 
*** version 0.11.2 ***
96
 
* limit depth of parent.document crawl to 1 for getXY
97
 
* test offsetParent instead of parentNode for getXY
98
 
* return null if no el fo r get
99
 
* just addClass if no class to replace for replaceClass
100
 
 
101
 
 
102
 
*** version 0.11.1 ***
103
 
 
104
 
* return null if el is null for get()
105
 
* test offsetParent rather than parentNode for getXY()
106
 
* limit depth of parent.document crawl for IE getXY() to 1
107
 
* if no oldClassName to replace, just addClass for replaceClass()
108
 
 
109
 
 
110
 
*** version 0.11.0 ***
111
 
* Work around Opera 9 broken currentStyle
112
 
* Removed timeout wrapper from setXY retry
113
 
* Tagname tests now case-insensitive
114
 
* Internal "this" references changed to allow for method shorthand
115
 
* get/setStyle now accept both camel and hyphen case
116
 
* Gecko reverted to crawling offsets for getXY
117
 
 
118
 
 
119
 
*** version 0.10.0 ***
120
 
 
121
 
* Safari now fails gracefully when querying computedStyle of an unavailable element 
122
 
 
123
 
* Class management functions added (hasClass, addClass, removeClass, replaceClass, getElementsByClassName) 
124
 
 
125
 
* All methods that accept HTMLElements or IDs now also accept arrays of HTMLElements and/or IDs
126
 
 
127
 
* GenerateId method added
128
 
 
129
 
* isAncestor method added
130
 
 
131
 
* inDocument method added
132
 
 
133
 
* getElementsBy method added
134
 
 
135
 
* batch method added
136
 
 
137
 
* getClientHeight/Width deprecated in favor of getViewportHeight/Width
138
 
 
139
 
* getDocumentHeight/Width methods added 
140
 
 
141
 
*** version 0.9.0 ***
142
 
 
143
 
* Initial release
144