Re: [whatwg] [html5] r4685 - [e] (0) Add an example of forcing fallback from source.

2010-02-10 Thread Simon Pieters
in invalid HTML since it puts sources outside video. -- Simon Pieters Opera Software

Re: [whatwg] URN or protocol attribute

2010-02-10 Thread Simon Pieters
of IE's namespaces. It's the equivalent of DOM's .namespaceURI. -- Simon Pieters Opera Software

Re: [whatwg] [html5] r4627 - [e] (0) some editorial improvements to 'the indicated part...'

2010-01-27 Thread Simon Pieters
, there is no span title=the indicated part of + the documentindicated part of the document/span./p/li /ol ___ Commit-Watchers mailing list commit-watch...@lists.whatwg.org http://lists.whatwg.org/listinfo.cgi/commit-watchers-whatwg.org -- Simon

[whatwg] skipping timeupdate (was: Re: [html5] r4621 - [e] (0) Clarify when the drag-and-drop steps run.)

2010-01-25 Thread Simon Pieters
-and-drop operation, the user agent must check the state of the drag-and-drop ___ Commit-Watchers mailing list commit-watch...@lists.whatwg.org http://lists.whatwg.org/listinfo.cgi/commit-watchers-whatwg.org -- Simon Pieters Opera Software

Re: [whatwg] Inconsistent behavior for empty-string URLs

2009-12-22 Thread Simon Pieters
it prevented the extra image request from being made. Thanks. IIRC, IE doesn't make a request when using minimized attribute syntax, i.e. img src (because it drops the attribute during parsing). -- Simon Pieters Opera Software

Re: [whatwg] Calling Workers from Workers

2009-12-20 Thread Simon Pieters
it's own workers) Worker 1-3-1 Worker 1-3-2 Worker 1-3-3 -- Worker 2 (waits for results from it's own workers) --- Worker 2-1 --- Worker 2-2 --- Worker 2-3 -- Worker 3 (no more recursion) Sure. The spec has an example of this (1.2.5 Delegation). -- Simon Pieters Opera Software

Re: [whatwg] Inconsistent behavior for empty-string URLs

2009-12-18 Thread Simon Pieters
On Fri, 18 Dec 2009 01:51:44 +0100, Simon Pieters sim...@opera.com wrote: On Thu, 17 Dec 2009 22:58:03 +0100, Simon Pieters sim...@opera.com wrote: I asked Philip to provide some data about pages using empty attributes for these: Philip` zcorpan: http://philip.html5.org/data/empty-url

Re: [whatwg] api for fullscreen()

2009-12-17 Thread Simon Pieters
or layout thrash. We don't have a specific API proposal to make right now, but I'll try to get the people working on this to put forward a concrete proposal soon. Regards, Maciej -- Simon Pieters Opera Software

Re: [whatwg] Inconsistent behavior for empty-string URLs

2009-12-17 Thread Simon Pieters
be good to do so before changing things, so we have an idea what the compat impact is. It would also be good to document what browsers do today for all of these. -- Simon Pieters Opera Software

Re: [whatwg] Passing more than JSON data to workers

2009-12-17 Thread Simon Pieters
. :-) -- Simon Pieters Opera Software

Re: [whatwg] Inconsistent behavior for empty-string URLs

2009-12-17 Thread Simon Pieters
Morpheus, not everyone believes what you believe! Morpheus: My beliefs do not require them to. -Original Message- From: Simon Pieters [mailto:sim...@opera.com] Sent: Thursday, December 17, 2009 1:58 PM To: Jonas Sicking Cc: Nicholas Zakas; Maciej Stachowiak; whatwg@lists.whatwg.org; Aryeh

Re: [whatwg] Inconsistent behavior for empty-string URLs

2009-12-17 Thread Simon Pieters
On Thu, 17 Dec 2009 22:58:03 +0100, Simon Pieters sim...@opera.com wrote: I asked Philip to provide some data about pages using empty attributes for these: Philip` zcorpan: http://philip.html5.org/data/empty-url-attributes.txt Philip` zcorpan: http://philip.html5.org/data/empty-url-link

Re: [whatwg] Inconsistent behavior for empty-string URLs

2009-12-16 Thread Simon Pieters
= attribute. All of these would never attempt to fetch a resource if the src/href attribute is empty (even if the current baseuri is different from the document uri). However it would not act as if the attribute was not set (important for script). Does that sound right? / Jonas -- Simon Pieters

Re: [whatwg] Passing more than JSON data to workers

2009-12-16 Thread Simon Pieters
a data: url with the script text not work? data: URL is prohibited per the spec (because of the same-origin restriction) and doesn't work in Gecko or WebKit, but we've allowed data: URLs in Opera. -- Simon Pieters Opera Software

Re: [whatwg] Inconsistent behavior for empty-string URLs

2009-12-15 Thread Simon Pieters
haven't tested SVG or CSS). I think it's ok, but I'd like it specced. :-) -- Simon Pieters Opera Software

Re: [whatwg] Inconsistent behavior for empty-string URLs

2009-12-10 Thread Simon Pieters
. What about URLs in CSS and SVG? -- Simon Pieters Opera Software

[whatwg] wording bug in web workers

2009-12-10 Thread Simon Pieters
to scriptURL instead. -- Simon Pieters Opera Software

Re: [whatwg] Inconsistent behavior for empty-string URLs

2009-12-08 Thread Simon Pieters
Mozilla mentioned that they recently changed the behavior for img, so Hixie changed the spec for img. -- Simon Pieters Opera Software

[whatwg] Interface objects defined in Web Workers outside workers

2009-12-07 Thread Simon Pieters
be available, but the others not. -- Simon Pieters Opera Software

[whatwg] Inconsistent naming for interfaces in workers

2009-12-07 Thread Simon Pieters
The Navigator and WorkerLocation interfaces in workers have inconsistent naming. Please rename the Navigator interface to WorkerNavigator. -- Simon Pieters Opera Software

Re: [whatwg] figureimg* caption

2009-12-02 Thread Simon Pieters
specific problems. BTW the current alternate proposal in the HTML Working Group is to replace dt/dd with a fltcap element to use as the label for both figure and details: http://esw.w3.org/topic/HTML/ChangeProposals/DdDt . Regards, Maciej -- Simon Pieters Opera Software

Re: [whatwg] createEvent() in Web Workers?

2009-11-30 Thread Simon Pieters
On Fri, 27 Nov 2009 17:02:00 +0100, Simon Pieters sim...@opera.com wrote: An idea for creating events is to support [Constructor] on all event IDLs, which makes the createEvent method unnecessary. Maybe we could even make the arguments to the constructor be called to initFooEvent

Re: [whatwg] createEvent() in Web Workers?

2009-11-27 Thread Simon Pieters
On Fri, 27 Nov 2009 16:50:21 +0100, Jonathan Cook jonathan.j5.c...@gmail.com wrote: Simon Pieters wrote: There's ErrorEvent.initErrorEvent, and dispatchEvent is exposed in workers, but there's no createEvent (because there's no document). Are there use cases for sending events in a worker

[whatwg] createEvent() in Web Workers?

2009-11-26 Thread Simon Pieters
There's ErrorEvent.initErrorEvent, and dispatchEvent is exposed in workers, but there's no createEvent (because there's no document). Are there use cases for sending events in a worker? Should we expose createEvent somewhere? Should we remove initErrorEvent? -- Simon Pieters Opera

[whatwg] Interface objects in Web Workers

2009-11-25 Thread Simon Pieters
, ErrorEvent are not in the list. Is this intentional? If they're intended to not create interface objects, it would be clearer if the IDLs had [NoInterfaceObject]. Should EventTarget and Event be in the list? -- Simon Pieters Opera Software

[whatwg] Web Workers: Worker.onmessage

2009-11-11 Thread Simon Pieters
. -- Simon Pieters Opera Software

Re: [whatwg] Web Workers: Worker.onmessage

2009-11-11 Thread Simon Pieters
On Wed, 11 Nov 2009 16:05:53 +0100, Simon Pieters sim...@opera.com wrote: Shouldn't setting onmessage on a Worker object enable the port message queue? Currently step 8 of the run a worker algorithm enables the port message queue for the WorkerGlobalObjectScope side, but it is never

[whatwg] Web Workers: SyntaxError exception?

2009-11-03 Thread Simon Pieters
Web Workers says If it failed to parse, then throw a SyntaxError exception and abort all these steps. Shouldn't that be SYNTAX_ERR exception? -- Simon Pieters Opera Software

[whatwg] Example wrong in web workers

2009-10-26 Thread Simon Pieters
' by the time of the test. -- Simon Pieters Opera Software

Re: [whatwg] [html5] r4288 - [cgiowt] (2) Change for form is parsed in table. Fixing http://www.w3.org/Bu [...]

2009-10-25 Thread Simon Pieters
error/span./p + +pspanInsert an HTML element/span for the token./p + +pPop that codeinput/code element off the spanstack of +open elements/span./p + + /dd + s/input/form/ -- Simon Pieters Opera Software

Re: [whatwg] HTMLElement.onload

2009-10-25 Thread Simon Pieters
headaches for authors) to support all event handlers everywhere. http://www.whatwg.org/specs/web-apps/current-work/multipage/section-index.html#events-0 (and the tables referenced from there) is useful for finding out which events are fired where. HTH, -- Simon Pieters Opera Software

Re: [whatwg] object behavior

2009-10-18 Thread Simon Pieters
things, like HTML and images. embed also allows images (including SVG with scripts), at least in browsers. -- Simon Pieters Opera Software

Re: [whatwg] object behavior

2009-10-16 Thread Simon Pieters
fallback! I command you!); }; /script One or both of the data and type attributes must be present. says the spec. embed doesn't seem to have the same requirement for src and type. (Also compare with img, iframe, video...) -- Simon Pieters Opera Software

Re: [whatwg] The banner-role for headers

2009-10-13 Thread Simon Pieters
changes so that header and role=banner match. Personally I think 3) is *not* workable. Fair enough. Done #1. -- Simon Pieters Opera Software

Re: [whatwg] framesets

2009-10-12 Thread Simon Pieters
answered: What are you asking for? I would presume that Peter is asking for frameset, frame and noframes to be part of the set of conforming elements in HTML. Correct, Peter? -- Simon Pieters Opera Software

Re: [whatwg] Is there any reason for the continued existence of enctype attribute at the form element

2009-10-11 Thread Simon Pieters
that it is probably an authoring error if the author included a type=file control on a page with the default enctype, Should thus validators flag this as an error? -- Simon Pieters Opera Software

Re: [whatwg] Restarting the media element resource fetch algorithm after load event

2009-10-09 Thread Simon Pieters
, then authors will stop depending on load whether or not we get consensus for altering the spec. Rob -- Simon Pieters Opera Software

Re: [whatwg] [html5] r4029 - [e] (0) Example of section use without article.

2009-10-05 Thread Simon Pieters
. ...but my original comment still stands: s/DOCTPE/DOCTYPE/ -- Simon Pieters Opera Software

[whatwg] Please provide a single document with HTML5+Web Workers+everything else

2009-09-30 Thread Simon Pieters
, it would still be annoying to jump back and forth between the two documents. (I guess the same applies to Web Database and the others, too.) -- Simon Pieters Opera Software

Re: [whatwg] Interface object vs constructor in Web Workers

2009-09-29 Thread Simon Pieters
On Fri, 25 Sep 2009 14:47:10 +0200, Simon Pieters sim...@opera.com wrote: http://www.whatwg.org/specs/web-workers/current-work/#interface-objects-and-constructors seems to say that there must be no interface object for Worker and SharedWorker, but the constructors are to be available, which

Re: [whatwg] [html5] r4017 - [] (0) Hide margin on 'dd' if in figure or details. Fixing http://www.w3.org [...]

2009-09-29 Thread Simon Pieters
-specific/span: use 'margin-right' for rtl elements */ +details dd, figure dd { margin-left: 0; } This should be LTR-specific, too. -- Simon Pieters Opera Software

Re: [whatwg] [html5] r4029 - [e] (0) Example of section use without article.

2009-09-29 Thread Simon Pieters
of the + ceremony./p + + prelt;!DOCTPE Htmlgt; s/DOCTPE/DOCTYPE/ -- Simon Pieters Opera Software

[whatwg] Typo in Web Workers

2009-09-28 Thread Simon Pieters
WorkerUtils implement WindowTimers; should be WorkerUtils implements WindowTimers; -- Simon Pieters Opera Software

Re: [whatwg] Using Web Workers without external files

2009-09-25 Thread Simon Pieters
making data: urls is an ok solution, unless the usecases are compelling enough that we think it's something that people will do a lot. Yeah, I think supporting data: URLs would be good. -- Simon Pieters Opera Software

[whatwg] Interface object vs constructor in Web Workers

2009-09-25 Thread Simon Pieters
are in fact the same object, unless I'm misunderstanding things. -- Simon Pieters Opera Software

[whatwg] Please always use utf-8 for Web Workers

2009-09-25 Thread Simon Pieters
to utf-8 elsewhere. -- Simon Pieters Opera Software

Re: [whatwg] Using Web Workers without external files

2009-09-25 Thread Simon Pieters
misunderstood what we're asking for here. We're not asking for cross-domain workers, we're asking for workers that are in the same page. -- Simon Pieters Opera Software

Re: [whatwg] Please always use utf-8 for Web Workers

2009-09-25 Thread Simon Pieters
in another encoding, then they would notice by seeing that their text looks like garbage. Browsers could also log messages to their error consoles about encoding declarations declaring non-utf-8 and/or sequences of bytes that are not valid utf-8. -- Simon Pieters Opera Software

[whatwg] Using Web Workers without external files

2009-09-23 Thread Simon Pieters
Worker('?'); worker.onmessage = function(e) { alert(e.data) } /script !-- */ //-- ...but this is a bit too hacky for my taste. -- Simon Pieters Opera Software

[whatwg] Remove [Supplemental] in Web Workers

2009-09-23 Thread Simon Pieters
DedicatedWorkerGlobalScope and SharedWorkerGlobalScope probably shouldn't have [Supplemental]. -- Simon Pieters Opera Software

[whatwg] security exception not defined, used in Web Workers

2009-09-23 Thread Simon Pieters
a SECURITY_ERR exception.) -- Simon Pieters Opera Software

Re: [whatwg] [html5] r3927 - [gow] (2) Update the rendering section to handle media elements' controls='' att [...]

2009-09-21 Thread Simon Pieters
interface/span is not expected to affect the size of the rendering; controls are expected to be overlaid with the page content without causing any layout changes, and are expected to disappear when the user does not need -- Simon Pieters Opera Software

Re: [whatwg] [html5] r3820 - [e] (0) step/min/max examples.

2009-09-13 Thread Simon Pieters
max=2000-12-31gt;/pre + + /div s/2000/1999/ -- Simon Pieters Opera Software

Re: [whatwg] [html5] r3820 - [e] (0) step/min/max examples.

2009-09-13 Thread Simon Pieters
On Sun, 13 Sep 2009 10:52:18 +0200, Ian Hickson i...@hixie.ch wrote: s/2000/1999/ Since when? Oops. I thought the 21st century started 2000, but it seems I was wrong. -- Simon Pieters Opera Software

Re: [whatwg] Initial carriage return in pre and textarea

2009-09-11 Thread Simon Pieters
means \n for the content model purposes. -- Simon Pieters Opera Software

Re: [whatwg] [html5] r3793 - [e] (0) noscript example

2009-09-10 Thread Simon Pieters
replaceChild). This is a better technique because noscript is unaware of whether the script was successful, and also noscript is not supported in XHTML. -- Simon Pieters Opera Software

Re: [whatwg] Fakepath revisited

2009-09-07 Thread Simon Pieters
, and this added cost of learning should not be ignored either. IE7 (and IE8 in quirks and compat view modes) and earlier versions of Firefox (and earlier versions of WebKit?) exposed the full path, so Web developers already had to hack out a substring to get the file name. -- Simon Pieters Opera

Re: [whatwg] Fakepath revisited

2009-09-03 Thread Simon Pieters
to the incompatible behavior is not less of a problem. -- Simon Pieters Opera Software

Re: [whatwg] complete DOM attribute (image elements)

2009-08-30 Thread Simon Pieters
fail to see why changing Gecko's behavior would introduce a privacy leak. -- Simon Pieters Opera Software

Re: [whatwg] formNoValidate/novalidate/willValidate

2009-08-26 Thread Simon Pieters
student and I; he's been working on form validation in WebKit) encountered this recently, we assumed it was a typo, and I used the snazzy little file a bug from directly on this page UI on the spec to note it. PK -- Simon Pieters Opera Software

Re: [whatwg] [html5] r3657 - [acgiow] (2) First cut at ARIA integration.

2009-08-22 Thread Simon Pieters
in all other languages. http://www.w3.org/WAI/PF/aria-implementation/#glossary -- Simon Pieters Opera Software

[whatwg] Root WAI-ARIA node for HTML (was: Re: [html5] r3657 - [acgiow] (2) First cut at ARIA integration.)

2009-08-22 Thread Simon Pieters
for doing so. However, making the ARIA root always be the document element seems simpler to implement and specify, so maybe the ARIA spec could be changed here? -- Simon Pieters Opera Software

Re: [whatwg] HTML5: compatible with all legacy Web browsers

2009-08-07 Thread Simon Pieters
is it that is not compatible with which browser? -- Simon Pieters Opera Software

Re: [whatwg] [html5] r3515 - [e] (0) Clarify 'font' serialisation.

2009-07-31 Thread Simon Pieters
title=context.font/code would + evaluate to the string code title=italicnbsp;12pxnbsp;Unknownnbsp;Font,nbsp;sans-serif/code. I think CSSOM says font names should be quoted. -- Simon Pieters Opera Software

Re: [whatwg] Whitespace handling in ruby

2009-07-29 Thread Simon Pieters
; shouldn't that be display:none instead?) -- Simon Pieters Opera Software

Re: [whatwg] Serving up Theora video in the real world

2009-07-28 Thread Simon Pieters
a container and codec match. -- Simon Pieters Opera Software

Re: [whatwg] Make quoted attributes a conformance criteria

2009-07-27 Thread Simon Pieters
type Global non-boolean attributes that are safe to leave unquoted: dir tabindex All other attributes can take one of the special characters [\s'] in the value, or the empty string as the value. -- Simon Pieters Opera Software

Re: [whatwg] [html5] r3416 - [] (0) Define that document.bgcolor et al don't reflect for frameset.

2009-07-15 Thread Simon Pieters
element/span, the attributes must + instead return the empty string on getting and do nothing on + setting./p I think it is now undefined what document.bgColor does when document.body *is* a frameset. -- Simon Pieters Opera Software

Re: [whatwg] [html5] r3306 - [] (0) Define interaction with CSS case-sensitivity rules.

2009-07-14 Thread Simon Pieters
implemented for compliance with CSS2 and HTML4 when Niels Leenheer wrote a Selectors test suite back in 2006. -- Simon Pieters Opera Software

Re: [whatwg] Nested list

2009-07-13 Thread Simon Pieters
id=i3item 3/li/ol /ol In particular, many UA remove arbitrary id attributes. Best regards, Ryosuke Niwa rn...@google.com -- Simon Pieters Opera Software

Re: [whatwg] Serializing HTML fragments (9.4)

2009-07-13 Thread Simon Pieters
is a for the Text/CDATASection handling. No opinion on this, honestly. -- Simon Pieters Opera Software

Re: [whatwg] hasFeature() When Only 1 Syntax is Supported

2009-06-24 Thread Simon Pieters
On Mon, 22 Jun 2009 08:31:54 +0200, Simon Pieters sim...@opera.com wrote: On Sat, 20 Jun 2009 18:34:38 +0200, Smylers smyl...@stripey.com wrote: The current text suggests that a user-agent may choose to support only the HTML syntax (not XHTML) but should still return true for hasFeature(XHTML

Re: [whatwg] [html5] r3306 - [] (0) Define interaction with CSS case-sensitivity rules.

2009-06-23 Thread Simon Pieters
contenteditable draggable ...and maybe from the obsolete elements section: behavior direction truespeed -- Simon Pieters Opera Software

[whatwg] Spec annotation broken by class=impl

2009-06-23 Thread Simon Pieters
-- Simon Pieters Opera Software

Re: [whatwg] hasFeature() When Only 1 Syntax is Supported

2009-06-22 Thread Simon Pieters
is encouraged, user-agents may choose to support only one of them: http://www.whatwg.org/html5#conformance-requirements Maybe the spec should remove these feature strings altogether and encourage authors to use more accurate methods of detecting support. -- Simon Pieters Opera Software

Re: [whatwg] HTML 5 video tag questions

2009-06-15 Thread Simon Pieters
is not supported then you get a blank box. If you want to offer multiple formats to cater to disparate UAs, give video some source children rather than @src. It will try each source in turn until it finds one it can play. Yep. -- Simon Pieters Opera Software

Re: [whatwg] [html5] r3218 - [] (0) Mention frameset event handler attributes (they work like body's apparently)

2009-06-10 Thread Simon Pieters
there are other interfaces or members that are currently lacking. -- Simon Pieters Opera Software

Re: [whatwg] [html5] r3151 - [] (0) Try to make the magic margin collapsing rule more accurate.

2009-06-02 Thread Simon Pieters
. I don't know what's simpler to implement, but the spec now matches at least Opera, Firefox and Safari (haven't tested IE). -- Simon Pieters Opera Software

Re: [whatwg] document.contentType

2009-06-02 Thread Simon Pieters
or MathML elements, so you probably want to conditionally call getElementsByTagNameNS based on e.g. the root element's namespaceURI rather than the document's HTMLness. -- Simon Pieters Opera Software

Re: [whatwg] [html5] r3151 - [] (0) Try to make the magic margin collapsing rule more accurate.

2009-06-01 Thread Simon Pieters
elements, are expected to be + collapsed to zero./p h4Alignment/h4 Please change spanthe body element/span to codebody/code elements. -- Simon Pieters Opera Software

Re: [whatwg] [html5] r3151 - [] (0) Try to make the magic margin collapsing rule more accurate.

2009-06-01 Thread Simon Pieters
On Mon, 01 Jun 2009 21:09:56 +0200, Ian Hickson i...@hixie.ch wrote: Please change spanthe body element/span to codebody/code elements. Really? Do you have a test case demonstrating this? http://software.hixie.ch/utilities/js/live-dom-viewer/saved/124 -- Simon Pieters Opera Software

Re: [whatwg] DOMTokenList is unordered but yet requires sorting

2009-05-18 Thread Simon Pieters
in the less popular UA and that UA vendor has to reverse engineer the popular UA and implement the same order. The above has happened with the DOM Core .attributes attribute, IIRC. -- Simon Pieters Opera Software

Re: [whatwg] A new attribute for video and low-power devices

2009-05-18 Thread Simon Pieters
, or significant would greatly assist browsers in determining the correct behavior. Is there a problem with always falling back to the poster image and just play the video (full-screen or on-top) when the user indicates he wants to see the video? -- Simon Pieters Opera Software

Re: [whatwg] A new attribute for video and low-power devices

2009-05-18 Thread Simon Pieters
On Mon, 18 May 2009 16:59:03 +0200, Benjamin M. Schwartz bmsch...@fas.harvard.edu wrote: Simon Pieters wrote: Is there a problem with always falling back to the poster image and just play the video (full-screen or on-top) when the user indicates he wants to see the video? If every menu

Re: [whatwg] A new attribute for video and low-power devices

2009-05-18 Thread Simon Pieters
On Mon, 18 May 2009 18:59:01 +0200, Benjamin M. Schwartz bmsch...@fas.harvard.edu wrote: Simon Pieters wrote: If there is a controls attribute or if scripting is disabled, show controls, else use author-provided scripted button (if any) to play the video. Consider a webpage in which a side

Re: [whatwg] Annotating structured data that HTML has no semantics for

2009-05-15 Thread Simon Pieters
RDFa to the same extent that XHTML 1.1 supports microdata (in both cases, it would work but is not valid). -- Simon Pieters Opera Software

Re: [whatwg] Annotating structured data that HTML has no semantics for

2009-05-11 Thread Simon Pieters
=com.damowmow.descOrange male. /di ... The styling problem is discussed at http://forums.whatwg.org/viewtopic.php?t=47 -- Simon Pieters Opera Software

Re: [whatwg] Interaction of explicit and implicit sections (was: Re: Question on (new) header and hgroup)

2009-05-08 Thread Simon Pieters
On Fri, 08 May 2009 00:58:21 +0200, Simon Pieters sim...@opera.com wrote: Actually I believe it would be: +--HTML 5 +--A new era of loveliness +--Navigation This surprised me when I used implicit sections and just wrapped articles around news items (which were h3s). I expected

Re: [whatwg] SVG extensions to canvas

2009-05-01 Thread Simon Pieters
of HTMLImageElement, HTMLCanvasElement, or HTMLVideoElement. If the image is of the wrong type or null, the implementation must raise a TYPE_MISMATCH_ERR exception. -- Simon Pieters Opera Software

Re: [whatwg] dl definition issue

2009-04-28 Thread Simon Pieters
dialog and say that dl is appropriate for marking up dialogue. -- Simon Pieters Opera Software

Re: [whatwg] dl definition issue

2009-04-28 Thread Simon Pieters
the spec should say that DTs in DLs should be unique within the DL. -- Simon Pieters Opera Software

Re: [whatwg] Need alpha channel on favicon and log to make outside of circle transparent.

2009-04-18 Thread Simon Pieters
the ? And the same for logo also. See http://www.whatwg.org/images/logo http://www.whatwg.org/images/icon If anyone would like to make a version of these files with transparency, I would be happy to update the image used on the site. http://lists.w3.org/Archives/Public/www-archive/2009Apr/0042.html -- Simon

Re: [whatwg] video element error handling

2009-03-18 Thread Simon Pieters
tag as fallback, which is not helpful for a user with a browser that supports the video tag but doesn't have the right codec installed. If you want to, though, you can use scripting to detect that the video couldn't be played and replace the element with its contents. -- Simon Pieters Opera

Re: [whatwg] DOMTimeStamp binding

2009-02-12 Thread Simon Pieters
that should return a Date? Any suggestions for what I need to do in Web DOM Core? -- Simon Pieters Opera Software

Re: [whatwg] DOMTimeStamp binding

2009-02-11 Thread Simon Pieters
a number of milliseconds. typedef unsigned long long DOMTimeStamp; ...and then refers to WebIDL for what that means to ECMAScript. -- Simon Pieters Opera Software

Re: [whatwg] [html5] Semantic elements and spec complexity

2009-02-10 Thread Simon Pieters
is intended to be useful to make subheaders not appear in the ToC, the move from h1Foo/h1 h2Bar/h2 to header h1Foo/h1 h2Bar/h2 /header shouldn't, IMHO, result in ugly borders that everyone has to nuke (compare with img border=0). -- Simon Pieters Opera Software

Re: [whatwg] Color attributes

2009-02-10 Thread Simon Pieters
On Wed, 11 Feb 2009 01:22:59 +0100, Ian Hickson i...@hixie.ch wrote: On Thu, 16 Oct 2008, Simon Pieters wrote: Color attributes in HTML have special processing. [...] It seems that some pages use three-digit notation and expect it to work as in CSS. I've made the algorithm do that and I've

Re: [whatwg] Methods defined for one document called after that document is no longer the one being displayed

2009-01-04 Thread Simon Pieters
a lot like Opera's also. It's in no way trivial to implement either, but it sounds like it is at least widely adopted. / Jens -- Simon Pieters Opera Software

Re: [whatwg] Use cases for Node.getElementById

2008-12-07 Thread Simon Pieters
into each algorithm that's adding stuff to the tree instead (in due course). Thanks for the feedback, -- Simon Pieters Opera Software

[whatwg] Use cases for Node.getElementById (was: Re: Early feedback on header association algorithm)

2008-12-05 Thread Simon Pieters
still have such a method internally if they need it. -- Simon Pieters Opera Software

<    1   2   3   4   5   6   7   >