Closed GoogleCodeExporter closed 8 years ago
For starters: you don't need to call "base2.DOM.bind(window)". In fact, window
is not a DOM object, and I
don't know what happens.
Dean: should we introduce a test in Binding.bind?
Something like if(!object.nodeType) throw Error("DOM Node expected")
Bug is confirmed for Safari 2, but is doesn't appear in WebKit.
The difference in execution happens in BOM.detect. The statement (the try/catch
part):
eval("r=!!(getComputedStyle)")
throws the error "ReferenceError - Can't find variable: getComputedStyle" in
Safari 2, but not in WebKit.
Safari 2 *does* support getComputedStyle though.
Code path:
-Document.bind
-AbstractView+ViewCSS.bind(document.defaultView)
-ViewCSS[@!(getComputedStyle)]
Original comment by doek...@gmail.com
on 17 Jul 2007 at 8:16
As it appears, Safari2 is defining document.defaultView.getComputedStyle, but
not window.getComputedStyle.
That explains why the test fails.
Firefox2, Opera9 and IE6 all do define document.defaultView.getComputedStyle,
so change the test in ViewCSS
to that.
Solved in /trunk/src, not yet in /trunk/lib.
Original comment by doek...@gmail.com
on 17 Jul 2007 at 8:47
> Dean: should we introduce a test in Binding.bind?
Something like if(!object.nodeType) throw Error("DOM Node expected")
Later. ;-) At the moment, binding is encouraged through the DOM.bind() method
not
through the Binding's individual bind() methods. But we can put some captures
there
for when we are in strict mode.
Incidentally, there is a feature of packer that treats lines that start with
";;;" as
single line comments:
e.g.
;;; console.log("this will show up in the source code but not in packed code");
I'm re-opening this bug because I quite like a global getComputedStyle()
function. It
won't do any harm to add it to the window object.
Original comment by dean.edw...@gmail.com
on 17 Jul 2007 at 9:30
Original comment by dean.edw...@gmail.com
on 17 Jul 2007 at 9:31
Sorry, I didn't check in until just now. trunk/lib still has to be generated
(I'm working on that).
DOM.bind(window) actually doesn't to anything. There's already a switch for
that in DOM.bind (I missed that
one).
window.getComputedStyle sounds good. Your call?
Original comment by doek...@gmail.com
on 17 Jul 2007 at 10:07
This bug is fixed with the change you made. As to the window.getComputedStyle()
issue, that is covered in another bug.
Original comment by dean.edw...@gmail.com
on 23 Jul 2007 at 9:06
Original issue reported on code.google.com by
marius...@gmail.com
on 17 Jul 2007 at 11:43