Re: [whatwg] Need clarification on DOM exceptions thrown by canvas 2D drawImage

2011-08-09 Thread Philip Taylor
. Or is it able to do clamp-to-edge fine up to the edge of the source image, just not extend that beyond the image when the source rectangle is expanded further? -- Philip Taylor exc...@gmail.com

Re: [whatwg] Accept full CSS colors in the legacy color parsing algorithm

2011-04-13 Thread Philip Taylor
, http://philip.html5.org/data/bgcolors.txt for body bgcolor. (Each line is the number of URLs that value was found on (from the set from http://philip.html5.org/data/dotbot-20090424.txt), followed by the XML-encoded value.) -- Philip Taylor exc...@gmail.com

Re: [whatwg] Canvas gradients color interpolation - change to premultiplied?

2010-11-23 Thread Philip Taylor
yellow or transparent red etc.) -- Philip Taylor exc...@gmail.com

Re: [whatwg] Question about gradient stops in canvas and parsing as CSS colors

2010-09-24 Thread Philip Taylor
.2d.fillStyle.parse.html -- Philip Taylor exc...@gmail.com

Re: [whatwg] Canvas API: What should happen if non-finite floats are used

2010-09-08 Thread Philip Taylor
to lack of Mac). I think the relevant bug is https://bugs.webkit.org/show_bug.cgi?id=13537 which was actually caused by passing 0 sizes to drawImage, not by non-finite values. -- Philip Taylor exc...@gmail.com

Re: [whatwg] Canvas feedback (various threads)

2010-08-11 Thread Philip Taylor
equations.) -- Philip Taylor exc...@gmail.com

Re: [whatwg] Default value of complete attribute on new Image objects

2010-08-10 Thread Philip Taylor
object whose complete attribute is false, [...] then the implementation must return without drawing anything.). Now that it can be true when the image doesn't have any image data, what should they do when passed such an image? -- Philip Taylor exc...@gmail.com

Re: [whatwg] Default value of complete attribute on new Image objects

2010-08-10 Thread Philip Taylor
On Wed, Aug 11, 2010 at 1:06 AM, Jonas Sicking jo...@sicking.cc wrote: On Tue, Aug 10, 2010 at 4:56 PM, Philip Taylor excors+wha...@gmail.com wrote: On Wed, Aug 11, 2010 at 12:23 AM, Ian Hickson i...@hixie.ch wrote: I've updated the spec to have complete return true if the src is the empty

Re: [whatwg] HTML resource packages

2010-08-04 Thread Philip Taylor
/logo.png; !-- now use canvas to read the pixel data of the secret logo, since it was loaded from the evil.com origin -- Is anything stopping that? In 4.3 step 2: What is pkg-url initialised to? (The package href of p?) -- Philip Taylor exc...@gmail.com

Re: [whatwg] HTML resource packages

2010-08-04 Thread Philip Taylor
attribute), so it's not the same. If you do want it to work the same then you'll need to hook into the parser and ignore dynamic updates. -- Philip Taylor exc...@gmail.com

Re: [whatwg] Allowing in attribute values

2010-06-25 Thread Philip Taylor
On Thu, Jun 24, 2010 at 2:34 PM, Benjamin M. Schwartz bmsch...@fas.harvard.edu wrote: [...] HTML5 is about making a spec that matches common practice, right?  In practice, no one puts in attribute values. The data disagrees: http://philip.html5.org/data/gt-in-attribute.txt -- Philip Taylor

Re: [whatwg] WebSockets: UDP

2010-06-03 Thread Philip Taylor
enough about security to judge that. Also I don't know what packet construction would be sufficiently careful. But it seems like a possible new concern that's introduced when using UDP in this context.) -- Philip Taylor exc...@gmail.com

Re: [whatwg] WebSockets: UDP

2010-06-02 Thread Philip Taylor
On Tue, Jun 1, 2010 at 9:02 PM, Erik Möller emol...@opera.com wrote: On Tue, 01 Jun 2010 21:14:33 +0200, Philip Taylor excors+wha...@gmail.com wrote: More feedback is certainly good, though I think the libraries I mentioned (DirectPlay/OpenTNL/RakNet/ENet (there's probably more)) are useful

Re: [whatwg] WebSockets: UDP

2010-06-01 Thread Philip Taylor
shouldn't expose details of UDP (you could implement exactly the same API over TCP, with better reliability but worse latency, or over any other protocols that become well supported in the network). -- Philip Taylor exc...@gmail.com

Re: [whatwg] WebSockets: UDP

2010-06-01 Thread Philip Taylor
on top of UDP, and the choice is whether it includes the minimal set of features needed for security and hides them behind a UDP-like interface or whether it includes higher-level features and exposes them in a higher-level interface. -- Philip Taylor exc...@gmail.com

Re: [whatwg] What will not work when we do not have server ?

2010-03-29 Thread Philip Taylor
toDataURL or getImageData, whereas it would be fine if the files were on an http:// site. -- Philip Taylor exc...@gmail.com

Re: [whatwg] Offscreen canvas (or canvas for web workers).

2010-03-15 Thread Philip Taylor
benefit anyone who wants to use ImageData for other purposes. -- Philip Taylor exc...@gmail.com

Re: [whatwg] Multiple file download

2010-03-10 Thread Philip Taylor
) to just after the compressed file data. (But I never understood why pkunzip asked me to put in the last floppy disk of a multi-disk zip before it would start decompressing the first - maybe there's some reason that streaming decompression doesn't quite work perfectly in practice?) -- Philip

Re: [whatwg] Parsing processing instructions in HTML syntax: 10.2.4.44 Bogus comment state

2010-03-03 Thread Philip Taylor
) say: ?xml:namespace prefix = o ns = urn:schemas-microsoft-com:office:office / and don't have the string ? anywhere. -- Philip Taylor exc...@gmail.com

Re: [whatwg] Feature proposal - add method to CanvasRenderingContext2D

2010-03-03 Thread Philip Taylor
}; img.src = 'data:image/png;base64,...'; // get this string from readAsDataURL etc Is that sufficient for your use case? -- Philip Taylor exc...@gmail.com

Re: [whatwg] Error: Stray doctype.

2010-02-12 Thread Philip Taylor
On Fri, Feb 12, 2010 at 4:08 PM, Dean Edwards dean.edwa...@gmail.com wrote: http://html5.validator.nu/?doc=http://www.whatwg.org/specs/web-apps/current-work/multipage/ Oops, looks like a consequence of moving the multipage script to a server with a different version of lxml. Fixed. -- Philip

Re: [whatwg] some thoughts on sandboxed IFRAMEs

2010-02-05 Thread Philip Taylor
.) -- Philip Taylor exc...@gmail.com

Re: [whatwg] HTMLInputElement::valueAsNumber and NaN Infinity

2010-01-25 Thread Philip Taylor
that is a floating point number type (float) is assigned an Infinity or Not-a-Number (NaN) value, a NOT_SUPPORTED_ERR exception must be raised. This case seems to apply for valueAsNumber. -- Philip Taylor exc...@gmail.com

Re: [whatwg] Canvas pixel manipulation and performance

2009-11-30 Thread Philip Taylor
happen as per http://dev.w3.org/2006/webapi/WebIDL/#es-octet and CanvasPixelArray shouldn't define any conversion. (Filed as http://www.w3.org/Bugs/Public/show_bug.cgi?id=8405). Hopefully WebIDL and WebGL either match or can be made to match. -- Philip Taylor exc...@gmail.com

Re: [whatwg] Canvas pixel manipulation and performance

2009-11-29 Thread Philip Taylor
to have those simpler clamping semantics? (I don't expect there would be compatibility problems with changing it now, particularly since Firefox doesn't implement clamping at all in CPA.) -- Philip Taylor exc...@gmail.com

Re: [whatwg] Superset encodings [Re: ISO-8859-* and the C1 control range]

2009-10-22 Thread Philip Taylor
to other ISO-2022 encodings. -- Philip Taylor exc...@gmail.com

Re: [whatwg] Canvas Proposal: aliasClipping property

2009-10-16 Thread Philip Taylor
? etc), and it sounds like a complicated thing to define and to implement interoperably, and I don't see obvious benefits to users, so the current specced behaviour (using infinite bitmaps, not extents) seems to me like the best approach (and we just need everyone to implement it). -- Philip

Re: [whatwg] Canvas Proposal: aliasClipping property

2009-10-16 Thread Philip Taylor
On Fri, Oct 16, 2009 at 2:25 PM, Robert O'Callahan rob...@ocallahan.org wrote: On Sat, Oct 17, 2009 at 1:06 AM, Philip Taylor excors+wha...@gmail.com wrote: I think the spec is clear on this (at least when I last looked; not sure if it's changed since then). Image A is infinite and filled

Re: [whatwg] Stripping newlines from URI attributes

2009-07-30 Thread Philip Taylor
src) and loads more. -- Philip Taylor exc...@gmail.com

Re: [whatwg] the cite element

2009-07-27 Thread Philip Taylor
: see http://philip.html5.org/data/cite.txt for some older data about cite. (Looks like non-title uses are very common.) -- Philip Taylor exc...@gmail.com

Re: [whatwg] Validation

2009-07-21 Thread Philip Taylor
solutions.) -- Philip Taylor exc...@gmail.com

Re: [whatwg] the cite element

2009-07-01 Thread Philip Taylor
cite for more than titles. In practical usage it seems to be used for more than titles: http://philip.html5.org/data/cite.txt. (But I haven't tried working out what else it is used for, or how commonly it's used for titles.) -- Philip Taylor exc...@gmail.com

Re: [whatwg] Removing the need for separate feeds

2009-05-22 Thread Philip Taylor
/article ... /ol and then it would hopefully work. -- Philip Taylor exc...@gmail.com

Re: [whatwg] Removing the need for separate feeds

2009-05-22 Thread Philip Taylor
On Fri, May 22, 2009 at 2:02 PM, Adrian Sutton adrian.sut...@ephox.com wrote: On 22/05/2009 13:32, Philip Taylor excors+wha...@gmail.com wrote: Perhaps a page like http://philip.html5.org/data.html - people might want to subscribe in their feed reader to see all the exciting updates

Re: [whatwg] Link rot is not dangerous

2009-05-15 Thread Philip Taylor
that are most vulnerable to link rot, and in practice the links appear to fail quite often.) (I'm not arguing that link rot is dangerous - just that the numbers indicate it's a common situation rather than an extremely rare exception.) -- Philip Taylor exc...@gmail.com

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

2009-05-14 Thread Philip Taylor
!) -- Philip Taylor exc...@gmail.com

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

2009-05-14 Thread Philip Taylor
On Thu, May 14, 2009 at 2:54 PM, Philip Taylor excors+wha...@gmail.com wrote: [...]  urn:subject urn:predicate _:X . [...]  div item    link itemprop=about href=urn:subject    meta itemprop=urn:predicate item id=X  /div [...] So, I can't see any limits on expressivity other than

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

2009-05-12 Thread Philip Taylor
itemprop=location.long content=-12.34span1 High Street/span to get the desired output. (Not particularly elegant syntax, though.) -- Philip Taylor exc...@gmail.com

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

2009-05-12 Thread Philip Taylor
difficulty even writing plain HTML.) -- Philip Taylor exc...@gmail.com

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

2009-05-11 Thread Philip Taylor
. But there could be a convention that properties called about indicate the URLs that the item applies to, and then it would work with exactly the same markup as the RDF case. -- Philip Taylor exc...@gmail.com

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

2009-05-10 Thread Philip Taylor
/demo.html (works in at least Firefox and Opera), which attempts to show you the JSON serialisation of the embedded data, which might help in examining the proposal. -- Philip Taylor exc...@gmail.com

[whatwg] Typo

2009-04-24 Thread Philip Taylor
./ /label ...could cause the UA to display an alert such as: part number is a digit followed by three uppercase letters. You cannot complete this form until the field is correct. which is missing the A in the last-but-one line. -- Philip Taylor exc...@gmail.com

Re: [whatwg] Canvas Shadows - Unnecessary Barrier to Entry

2009-03-28 Thread Philip Taylor
what makes this fundamentally harder than implementing all the other required canvas features. [...] -- Philip Taylor exc...@gmail.com

Re: [whatwg] Historic dates in HTML5

2009-03-05 Thread Philip Taylor
of time, to guarantee everything is going to work correctly even with unexpected input values. So the restriction adds complexity (and bugs) to code that wants to be good and careful and generate valid markup. -- Philip Taylor exc...@gmail.com

Re: [whatwg] Historic dates in HTML5

2009-03-05 Thread Philip Taylor
On Thu, Mar 5, 2009 at 12:56 PM, James Graham jgra...@opera.com wrote: Philip Taylor wrote: and make sure their stylesheets use the selector .time instead of time, to guarantee everything is going to work correctly even with unexpected input values. So the restriction adds complexity

Re: [whatwg] proposed canvas 2d API additions

2009-02-28 Thread Philip Taylor
-approx.html is fairly straightforward (and a much more accurate version shouldn't be much more complex) and can detect when your mouse is near a curve. (But if this is a common problem, it would indeed be nicer if the canvas API provided the functionality instead of forcing you to reimplement it.) -- Philip

Re: [whatwg] Canvas arcTo all points on a line

2009-01-21 Thread Philip Taylor
a pain to implement the spec's behaviour then I would be happy with changing what the spec requires. -- Philip Taylor exc...@gmail.com

Re: [whatwg] Canvas arcTo all points on a line

2009-01-21 Thread Philip Taylor
On Wed, Jan 21, 2009 at 2:45 PM, Philip Taylor excors+wha...@gmail.com wrote: On Sat, Dec 27, 2008 at 9:37 AM, Dirk Schulze vb...@gmx.de wrote: Hi, have two questions to the all points on a line part of canvas' arcTo. A short example: moveTo(50,0); arcTo(100,0, 0,0, 10); This should add

[whatwg] /html with omitted tags

2008-12-26 Thread Philip Taylor
in the in head insertion mode and is Any other end tag: Parse error. Ignore the token., so something seems wrong. -- Philip Taylor exc...@gmail.com

Re: [whatwg] 8.2.4.37: EOF handling

2008-12-22 Thread Philip Taylor
is not 'x' or 'X' and so it is anything else. So it seems consistent and unambiguous to me. -- Philip Taylor exc...@gmail.com

Re: [whatwg] Consuming ampersands

2008-12-22 Thread Philip Taylor
signs, but never the ampersand. They're consumed in the state that comes before the character reference state, e.g.: 8.2.4.1 Data state Consume the next input character: - U+0026 AMPERSAND () ... switch to the character reference data state. -- Philip Taylor exc...@gmail.com

Re: [whatwg] Byte-wise tokenization algorithm

2008-12-21 Thread Philip Taylor
count is relevant.) -- Philip Taylor exc...@gmail.com

Re: [whatwg] Solving the login/logout problem in HTML

2008-11-26 Thread Philip Taylor
opinion on that.) -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] Absent rev?

2008-11-19 Thread Philip Taylor
data, from a different set of pages (and so with different biases, e.g. there's lots of Wikipedia and IMDB pages using rel=apple-touch-icon), with less processing (no case-insensitivity or token-splitting). -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] Absent rev?

2008-11-19 Thread Philip Taylor
On Wed, Nov 19, 2008 at 1:03 PM, Martin McEvoy [EMAIL PROTECTED] wrote: Philip Taylor wrote: http://philip.html5.org/data/link-rel-rev.txt has some more recent data, from a different set of pages (and so with different biases, e.g. there's lots of Wikipedia and IMDB pages using rel=apple

Re: [whatwg] Absent rev?

2008-11-19 Thread Philip Taylor
On Wed, Nov 19, 2008 at 2:54 PM, Martin McEvoy [EMAIL PROTECTED] wrote: Philip Taylor wrote: rev=stylesheet makes up 57% of those uses of rev, How do you get that figure? even if you just compare rev=made(1157 instances) and rev=stylesheet(107 instances) you get 9.25% of the examples use

Re: [whatwg] fixing the authentication problem

2008-10-21 Thread Philip Taylor
and will probably discover the user's password. -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] fixing the authentication problem

2008-10-21 Thread Philip Taylor
of the browser's username/password dialog box?) -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] canvas shadow compositing oddities

2008-07-29 Thread Philip Taylor
not much has changed since then). That is probably a sufficiently unusual situation that it's sensible for the spec to stay as it is and require WebKit to change, though the spec still needs to change for the default shadows-disabled case. -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] [canvas] imageRenderingQuality property

2008-06-30 Thread Philip Taylor
no reason to expect such weird behaviour), and 'auto' means 'low (but perhaps switch to high if the browser thinks it's going to be fast enough)'. That would avoid the issue of authors setting quality='low' and preventing high-speed users from getting the best quality output. -- Philip Taylor [EMAIL

[whatwg] Canvas tests updated

2008-06-24 Thread Philip Taylor
carefully; or that the tests are correct according to the spec but the spec is incorrect according to reality; so it would be good to get feedback from anyone who notices issues in them. -- Philip Taylor [EMAIL PROTECTED]

[whatwg] commit-watchers mail format

2008-06-21 Thread Philip Taylor
a given change. So it could be nice if the commit message was in the subject line, or at the top of the body (so it would appear in Gmail's content snippet thing). -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] Bad CSS on the multipage version

2008-06-04 Thread Philip Taylor
this, but adding h4 { position: relative; } into the page's CSS makes it work correctly in IE7, and doesn't affect any other browser. -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] More ImageData issues

2008-04-29 Thread Philip Taylor
= (pb * 255) / a; } (using round-to-zero integer division). putImageData can convert the other way: pr = (r*a + 254) / 255; pg = (g*a + 254) / 255; pb = (b*a + 254) / 255; Then put(get()) has no effect on the values in the premultiplied buffer.) -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] Feeedback on dfn, abbr, and other elements related to cross-references

2008-04-21 Thread Philip Taylor
/Attractions/Family/bog+train.htm http://www.rekordbog.dk/ http://www.seobythesea.com/ http://www.travelphp.com/ http://www.treseta.fi/ http://www.voyager.prima.de/cpp/books1.html http://www.w3.org/TR/XMLHttpRequest/ (plus 5 more on guardian.co.uk, and 8 more on beepworld.de) -- Philip Taylor [EMAIL

Re: [whatwg] ALT and equivalent representation

2008-04-18 Thread Philip Taylor
. -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] Question about the PICS label in HTML5

2008-04-16 Thread Philip Taylor
to use it - see http://philip.html5.org/data/pics-label.html (I have no idea how many of those uses are syntactically valid (maybe someone could test that if they're quite bored), or are appropriate for the page's content.) -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] A comment to character encoding declaration

2008-03-05 Thread Philip Taylor
not treated as gbk/gb18030, so it would be helpful to suggest/require it to be processed specially. -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] Proposal for a link attribute to replace a href

2008-02-28 Thread Philip Taylor
the language harder to understand and implement and test. Defining exceptions for a category of 'non-visible elements' (script, style, etc) wouldn't work since script style=display:block is not non-visible. I'm not sure how this could be made to work well. Shannon -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] html start tag token in the root element phase

2008-02-11 Thread Philip Taylor
valid. Handling html specially in the root element phase seems like a reasonable way of fixing this. -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] Canvas line styles comments

2008-02-02 Thread Philip Taylor
the polygon's points (being the join point, the two outside corners, and the point where the two continuated outside edges intersect). -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] Canvas patterns, and miscellaneous other things

2008-02-02 Thread Philip Taylor
. (That's at least what document.createTextNode(undefined) does). But I can just assume for now it's meant to work like null. -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] Canvas arcTo

2008-02-02 Thread Philip Taylor
On 31/01/2008, Ian Hickson [EMAIL PROTECTED] wrote: On Mon, 2 Jul 2007, Philip Taylor wrote: If the point (x2, y2) is on the line defined by the points (x0, y0) and (x1, y1) then the method must do nothing, as no arc would satisfy the above constraints. - why would no arc satisfy

Re: [whatwg] Canvas line styles comments

2008-02-02 Thread Philip Taylor
simpler and (I think) correct (except in the special parallel case): The rounding arc should be chosen so that if it was closed, it would not contain the join point. -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] Canvas line styles comments

2008-02-02 Thread Philip Taylor
going clockwise to the upmost point will not be contained entirely within that nearly-square. So neither arc is within the convex hull. -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] More random comments on the putImageData definition

2008-01-23 Thread Philip Taylor
the ImageData smaller and cut out the unused bits.) -- Philip Taylor [EMAIL PROTECTED]

[whatwg] Canvas bits

2008-01-21 Thread Philip Taylor
be rounded to the nearest integer.) Note: The transformation is applied to the path when it is drawn - oh no it isn't. -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] Canvas ImageData comments

2008-01-18 Thread Philip Taylor
On 18/01/2008, Ian Hickson [EMAIL PROTECTED] wrote: On Sat, 16 Jun 2007, Philip Taylor wrote: Colour spaces are not dealt with at all, but are particularly relevant for getImageData (else you have no idea what the values mean). Fixed, in theory. But since I have no idea what I'm talking

Re: [whatwg] Minor addition/rewording for canvas section

2008-01-13 Thread Philip Taylor
) they prevent evil.example.com accessing an input type=password.value from a naive.example.com document? -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] Minor addition/rewording for canvas section

2008-01-13 Thread Philip Taylor
= 'http://google.com/images/logo.gif'; The canvas reading/writing all happens in the same origin - it's just the image itself that is not the same origin. The same does not apply to ImageData, because scripts don't have access to ImageData objects from other origins. -- Philip Taylor [EMAIL PROTECTED]

[whatwg] must only ambiguity

2007-12-21 Thread Philip Taylor
would change the meaning of the content) should be replaced by x should y if z, and should not do so otherwise or x should not y if not z (depending on which directions the 'should' applies in). -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] HTML5 and URI Templates

2007-12-17 Thread Philip Taylor
but don't have an equivalent GET/POST form-accessible API. I haven't seen any other obvious useful uses yet.) -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] HTML5 and URI Templates

2007-12-16 Thread Philip Taylor
had form template which would avoid that conflict. (The only template attributes I see are one page with widget template and one with edittag:edit template.) -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] Compatibility problems with HTML5 Canvas spec.

2007-09-25 Thread Philip Taylor
- do people depend on that behaviour too? --Oliver -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] Issues concerning the base element and xml:base

2007-08-07 Thread Philip Taylor
: (0.001 +/- 0.002)% 4: (0.0003 +/- 0.001)% (though the normal approximation breaks down in the = 0.002% bits), so you can't determine anything about changes in frequency beyond the zero/one cases. -- Philip Taylor [EMAIL PROTECTED]

[Whatwg] IE-only character entity references

2007-07-30 Thread Philip Taylor
that I don't understand but that seem to all be on 2channel (or copied from it). I've no idea how common they are in general. Are these used significantly on the web, or would they be considered highly useful if anyone knew they existed, or should HTML5 just ignore them? -- Philip Taylor [EMAIL

Re: [whatwg] canvas Firefox support for toDataURL broken

2007-07-10 Thread Philip Taylor
around to that yet...) Regards, dev -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] Canvas arcTo

2007-07-03 Thread Philip Taylor
if the radius is finite. Chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Philip Taylor Sent: Monday, July 02, 2007 1:42 PM To: WHATWG Subject: [whatwg] Canvas arcTo If the point (x2, y2) is on the line defined by the points (x0, y0) and (x1, y1

[whatwg] Canvas arc

2007-07-03 Thread Philip Taylor
.) The right half of http://canvex.lazyilluminati.com/misc/arc.html is implemented as above, and gives exactly the same behaviour as FF in all the cases I have tried. -- Philip Taylor [EMAIL PROTECTED]

[whatwg] Canvas arcTo

2007-07-02 Thread Philip Taylor
must cause the implementation to raise an INDEX_SIZE_ERR exception. -- Philip Taylor [EMAIL PROTECTED]

[whatwg] WF2 - form action=

2007-06-30 Thread Philip Taylor
the same as form. In all, form action=. does take account of the base URI. Perhaps it would be sensible to follow the majority. -- Philip Taylor [EMAIL PROTECTED]

[whatwg] Canvas - non-standard globalCompositeOperation

2007-06-27 Thread Philip Taylor
cares. = Nothing happens. Am I missing any issues here? Would any browser developer think one of the first three situations applies, and be willing to make the necessary changes in that case? -- Philip Taylor [EMAIL PROTECTED]

[whatwg] Canvas patterns, and miscellaneous other things

2007-06-23 Thread Philip Taylor
). -- Philip Taylor [EMAIL PROTECTED]

[whatwg] Canvas line styles comments

2007-06-19 Thread Philip Taylor
and won't get drawn, which is slightly incompatible with Safari/FF3 but hopefully easy to fix in them, and compatible with Opera/FF2. -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] HTML syntax: comments before doctype and doctype sniffing

2007-06-18 Thread Philip Taylor
(not bytes) from the first non-whitespace character, and then it reparses the whole document in quirks mode if necessary. -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] HTML syntax: comments before doctype and doctype sniffing

2007-06-18 Thread Philip Taylor
On 18/06/07, Martin Payne [EMAIL PROTECTED] wrote: Philip Taylor wrote: In Firefox 2: javascript:s='?';for(i=0;i1006;++i)s+=' ';window.location='data:text/html,'+s+'!doctype htmlscriptdocument.write(document.compatMode)/script' javascript:s='?';for(i=0;i1007;++i)s+=' ';window.location

[whatwg] Canvas ImageData comments

2007-06-15 Thread Philip Taylor
create an ImageData object, one would net necessarily know what resolution the canvas expected - s/net/not/ -- Philip Taylor [EMAIL PROTECTED]

[whatwg] Canvas shadow rendering

2007-06-14 Thread Philip Taylor
apply to clearRect since it doesn't go through the Drawing Model at all. I'll try to look out for any other possible problem areas. -- Philip Taylor [EMAIL PROTECTED]

[whatwg] Numerical imprecision in charset detection

2007-06-01 Thread Philip Taylor
8.2.2. The input stream: If the next six characters are not 'charset' - s/six/seven/ -- Philip Taylor [EMAIL PROTECTED]

Re: [whatwg] noscript should be allowed in head

2007-05-30 Thread Philip Taylor
engine). http://www.whatwg.org/specs/web-apps/current-work#non-scripted already defines UA conformance when there's no scripting, which seems to cover those cases. -- Philip Taylor [EMAIL PROTECTED]

  1   2   >