Re: [whatwg] Proposal for window.DocumentType.prototype.toString

2012-10-31 Thread Johan Sundström
On Tue, Oct 30, 2012 at 3:20 AM, Stewart Brodie stewart.bro...@antplc.com wrote: Hi everybody! Serializing a complete HTML document DOM to a string is surprisingly hard in javascript. Does XMLSerializer().serializeToString(document) not meet your requirement? Ah – good thinking. (new

Re: [whatwg] URL: file: URLs

2012-10-31 Thread Mikko Rantalainen
João Eiras, 2012-10-31 01:41 (Europe/Helsinki): In both Firefox and Chrome if you type file://aaa/some/path, or file://localhost/some/path, the aaa and localhost parts are ignored, and the rest of the path is interpreted as a local file path. In Opera, anything that is not localhost gives an

[whatwg] Meta bugreport proposal

2012-10-31 Thread Nicolas Froidure
Hi, I think we need a specification to allow users to report websites bugs from their browser. That's why i think it could be usefull to add a meta markup like this : meta name=bugreport content=(uri) / The uri could be : - mailto: to send a report by mail (ex:

Re: [whatwg] Meta bugreport proposal

2012-10-31 Thread Julian Reschke
On 2012-10-31 10:21, Nicolas Froidure wrote: Hi, I think we need a specification to allow users to report websites bugs from their browser. That's why i think it could be usefull to add a meta markup like this : meta name=bugreport content=(uri) / link, not meta. The uri

Re: [whatwg] Meta bugreport proposal

2012-10-31 Thread Nicolas Froidure
On 31/10/2012 10:55, Julian Reschke wrote: On 2012-10-31 10:21, Nicolas Froidure wrote: Hi, I think we need a specification to allow users to report websites bugs from their browser. That's why i think it could be usefull to add a meta markup like this : meta name=bugreport

Re: [whatwg] URL: file: URLs

2012-10-31 Thread Anne van Kesteren
On Wed, Oct 31, 2012 at 9:27 AM, Mikko Rantalainen mikko.rantalai...@peda.net wrote: João Eiras, 2012-10-31 01:41 (Europe/Helsinki): In both Firefox and Chrome if you type file://aaa/some/path, or file://localhost/some/path, the aaa and localhost parts are ignored, and the rest of the path is

Re: [whatwg] URL: file: URLs

2012-10-31 Thread Boris Zbarsky
On 10/31/12 4:27 AM, Mikko Rantalainen wrote: (1) file://c:/foo tries to connect to server c: and request shared entity foo. I don't think that's really acceptable, but see below. I understand that (1) would behave different from some legacy user agents Well, it would behave differently

Re: [whatwg] URL: file: URLs

2012-10-31 Thread Boris Zbarsky
On 10/31/12 9:52 AM, Anne van Kesteren wrote: I think bz made it pretty clear we need to treat as if you typed file:///c:/foo (at least on Windows, my preference is all platforms). Not sure what the rules are exactly, but I believe they are if you have a single ASCII letter followed by : or |.

Re: [whatwg] URL: file: URLs

2012-10-31 Thread João Eiras
On Wed, 31 Oct 2012 15:38:36 +0100, Benjamin Smedberg benja...@smedbergs.us wrote: On 10/30/2012 7:41 PM, João Eiras wrote: I currently do not have Windows to test but I think I recall IE (or Opera?) opening file://server/share if there was a network share at \\server\share Firefox has

Re: [whatwg] URL: file: URLs

2012-10-31 Thread Anne van Kesteren
On Wed, Oct 31, 2012 at 3:38 PM, Benjamin Smedberg benja...@smedbergs.us wrote: I currently do not have Windows to test but I think I recall IE (or Opera?) opening file://server/share if there was a network share at \\server\share Firefox has considered and rejected that kind of proposal for

Re: [whatwg] Improving autocomplete

2012-10-31 Thread Dan Beam
On Fri, Oct 26, 2012 at 12:43 AM, Anne van Kesteren ann...@annevk.nl wrote: On Fri, Oct 26, 2012 at 9:24 AM, Elliott Sprehn espr...@gmail.com wrote: [...] I'm missing the scenario that requires such interference from a web developer. Can't a UA just offer to autocomplete a form for me once it

Re: [whatwg] Meta bugreport proposal

2012-10-31 Thread Ian Hickson
On Wed, 31 Oct 2012, Nicolas Froidure wrote: I think we need a specification to allow users to report websites bugs from their browser. That's why i think it could be usefull to add a meta markup like this : meta name=bugreport content=(uri) / The uri could be : - mailto: to send a

Re: [whatwg] Proposal for window.DocumentType.prototype.toString

2012-10-31 Thread Ian Hickson
On Tue, 30 Oct 2012, Johan Sundström wrote: That said, I would still much enjoy a future where javascript:alert(document.doctype) would tell you something rich about the page that we today need deep knowledge of document.compatMode and/or combinations of XMLSerializer and parsers, or deep

Re: [whatwg] Should scrollbars move focus?

2012-10-31 Thread Ojan Vafai
Does anyone from Mozilla know why textarea scrollbars are special-cased in Gecko? Would be good to know if there is a web compatibility requirement here. On Fri, Oct 26, 2012 at 12:17 AM, Elliott Sprehn espr...@gmail.com wrote: On Mon, Oct 22, 2012 at 6:28 PM, Ojan Vafai o...@chromium.org

Re: [whatwg] Should scrollbars move focus?

2012-10-31 Thread Robert O'Callahan
On Thu, Nov 1, 2012 at 11:16 AM, Ojan Vafai o...@chromium.org wrote: Does anyone from Mozilla know why textarea scrollbars are special-cased in Gecko? Would be good to know if there is a web compatibility requirement here. I don't know of one off the top of my head. I can't see how it could

Re: [whatwg] Should scrollbars move focus?

2012-10-31 Thread Ojan Vafai
On Wed, Oct 31, 2012 at 3:46 PM, Robert O'Callahan rob...@ocallahan.orgwrote: On Thu, Nov 1, 2012 at 11:16 AM, Ojan Vafai o...@chromium.org wrote: Does anyone from Mozilla know why textarea scrollbars are special-cased in Gecko? Would be good to know if there is a web compatibility

Re: [whatwg] Should scrollbars move focus?

2012-10-31 Thread Peter Kasting
On Wed, Oct 31, 2012 at 4:08 PM, Ojan Vafai o...@chromium.org wrote: On Wed, Oct 31, 2012 at 3:46 PM, Robert O'Callahan rob...@ocallahan.org wrote: I think what's happening here in Gecko is that a click on a focusable element moves focus, and a click on an element's scrollbars counts as a

Re: [whatwg] Proposal for window.DocumentType.prototype.toString

2012-10-31 Thread Johan Sundström
On Wednesday, October 31, 2012 at 15:02 , Ian Hickson wrote: On Tue, 30 Oct 2012, Johan Sundström wrote: That said, I would still much enjoy a future where javascript:alert(document.doctype) would tell you something rich about the page that we today need deep knowledge of

Re: [whatwg] Proposal for window.DocumentType.prototype.toString

2012-10-31 Thread Ian Hickson
On Wed, 31 Oct 2012, Johan Sundström wrote: On Wednesday, October 31, 2012 at 15:02 , Ian Hickson wrote: On Tue, 30 Oct 2012, Johan Sundström wrote: That said, I would still much enjoy a future where javascript:alert(document.doctype) would tell you something rich about the page that