Re: [webkit-dev] getting contents of noscript element through DOM

2009-10-26 Thread Darin Adler
On Oct 12, 2009, at 9:30 AM, mab2001 wrote: It seems that with WebKit, the contents of the noscript tag cannot be accessed through the DOM. FF and IE (haven't tested other browsers) allow access through the textContent property but in Safari and Chrome this just comes back blank. I think

Re: [webkit-dev] getting contents of noscript element through DOM

2009-10-26 Thread Maciej Stachowiak
On Oct 26, 2009, at 12:40 AM, Darin Adler wrote: On Oct 12, 2009, at 9:30 AM, mab2001 wrote: It seems that with WebKit, the contents of the noscript tag cannot be accessed through the DOM. FF and IE (haven't tested other browsers) allow access through the textContent property but in

[webkit-dev] getting contents of noscript element through DOM

2009-10-17 Thread mab2001
Hi, It seems that with webkit, the contents of the noscript tag cannot be accessed through the DOM. FF and IE (haven't tested other browsers) allow access through the textContent property but in Safari and Chrome this just comes back blank. I've tried looking through the WebKit code to see why