Options:
- # Session Start: Thu Aug 05 00:00:00 2010
- # Session Ident: #html-wg
- # [00:13] <pimpbot> bugmail: [Bug 9602] Autofocus attribute. <http://lists.w3.org/Archives/Public/public-html-bugzilla/2010Aug/0070.html>
- # [00:29] * Quits: mjs (mjs@17.246.16.203) (Quit: mjs)
- # [00:34] * Joins: mjs (mjs@17.246.16.203)
- # [00:43] <pimpbot> changes: hixie: idioms: main content (whatwg r5237) <http://lists.w3.org/Archives/Public/public-html-diffs/2010Aug/0016.html>
- # [00:43] <pimpbot> bugmail: "[Bug 9602] Autofocus attribute." (2 messages in thread) <http://lists.w3.org/Archives/Public/public-html-bugzilla/2010Aug/0071.html>
- # [01:01] * Quits: mjs (mjs@17.246.16.203) (Quit: mjs)
- # [01:06] * Quits: aroben (aroben@71.58.77.15) (Quit: aroben)
- # [01:13] <pimpbot> changes: hixie: Make DOMContentLoaded bubble. (whatwg r5240) <http://lists.w3.org/Archives/Public/public-html-diffs/2010Aug/0019.html> ** hixie: ack for previous checkin (whatwg r5239) <http://lists.w3.org/Archives/Public/public-html-diffs/2010Aug/0018.html> ** hixie: reorder for clarity and xref (whatwg r5238) <http://lists.w3.org/Archives/Public/public-html-diffs/2010Aug/0017.html>
- # [01:18] * Joins: mjs (mjs@17.244.13.237)
- # [01:43] <pimpbot> bugmail: [Bug 9578] On http-state it was mentioned that browsers support Set-Cookie here. Ugh! <http://lists.w3.org/Archives/Public/public-html-bugzilla/2010Aug/0074.html> ** [Bug 9663] Should sequences of bytes be replaced by a single U+FFFD, or one U+FFFD per input byte? <http://lists.w3.org/Archives/Public/public-html-bugzilla/2010Aug/0073.html> ** [Bug 9797] <meta http-equiv="Link"> not addressed by spec <http://lists.w3.org/Archives/Pu
- # [02:29] * Quits: mjs (mjs@17.244.13.237) (Quit: mjs)
- # [02:34] * Joins: mjs (mjs@17.246.16.224)
- # [02:41] * Quits: Julian (chatzilla@217.91.35.233) (Ping timeout)
- # [02:43] * Joins: Julian (chatzilla@217.91.35.233)
- # [03:54] * Quits: karl (karlcow@128.30.54.58) (Ping timeout)
- # [03:58] * Joins: karl (karlcow@128.30.54.58)
- # [04:35] * Joins: J_Voracek (irchon@166.205.11.169)
- # [04:35] * Quits: J_Voracek (irchon@166.205.11.169) (Client exited)
- # [04:41] * Quits: plh (plh@128.30.52.28) (Quit: always accept cookies)
- # [04:44] <pimpbot> changes: mike: style changes + typo fix from plh <http://lists.w3.org/Archives/Public/public-html-diffs/2010Aug/0020.html>
- # [04:50] * Joins: dydz (dydz@76.202.117.247)
- # [04:58] * Joins: J_Voracek (irchon@166.205.11.169)
- # [04:58] * Quits: J_Voracek (irchon@166.205.11.169) (Client exited)
- # [06:20] <dydz> Without loss of generality, suppose an <input id="A" type="text"> currently has focus. Calling window.focus() should perform the unfocusing steps on A according to section 7.4.2 of the HTML 5 spec. <http://www.w3.org/TR/html5/editing.html#focus-management>, correct?
- # [06:20] <pimpbot> Title: 7 User interaction HTML5 (at www.w3.org)
- # [06:22] <dydz> Section 7.4.3 "Document-level focus APIs" doesn't seem to elaborate on this behavior.
- # [06:24] <dydz> But the last paragraph of section 7.4.2 "When an element that is focused stops being a focusable element, or stops being focused ..." seems to imply that we should perform the unfocusing steps on A.
- # [07:04] <Hixie> window.focus() does nothing
- # [07:04] <Hixie> in particular, it doesn't affect the focus of elements in the window
- # [07:04] <Hixie> "The focus() method on the Window object, when invoked, provides a hint to the user agent that the script believes the user might be interested in the contents of the browsing context of the Window object on which the method was invoked."
- # [07:04] <Hixie> (http://www.whatwg.org/specs/web-apps/current-work/complete.html#dom-window-focus)
- # [07:04] <pimpbot> Title: Web Applications 1.0 (at www.whatwg.org)
- # [07:11] <Hixie> (dydz: ^)
- # [07:11] <dydz> Hixie: hi
- # [07:22] <dydz> Hixie: Then <https://bugs.webkit.org/attachment.cgi?id=46333> is correct as is?
- # [07:23] <dydz> That seems weird.
- # [07:24] <Hixie> that's a big test, what specifically am i looking to check?
- # [07:25] <dydz> Hixie: The description at the top
- # [07:25] <Hixie> that description is incorrect
- # [07:25] <Hixie> as far as i can tell
- # [07:26] <dydz> Is the correct expected result: (window, blur), (<iframe>, focus), (<input>, focus) ?
- # [07:26] <Hixie> focus() on a Window object has no effect on the focus of controls
- # [07:27] <Hixie> as far as I can tell, nothing in HTML ever fires 'blur' on Window objects
- # [07:27] <Hixie> or 'focus' for that matter
- # [07:28] <dydz> Hixie: We fire blur on the window when you click the <iframe>
- # [07:28] <dydz> (and hence focus the iframe)
- # [07:29] <Hixie> do any other browsers do that?
- # [07:29] <dydz> Hixie: We can make the change. I'm curious why delivering a focus() or blur() event to the window is being phased out.
- # [07:29] <Hixie> focus() event? do you mean a 'focus' event or the focus() method?
- # [07:29] <dydz> Yes, Firefox fires the blur() to the window
- # [07:30] <Hixie> the method?
- # [07:30] <Hixie> i'm confused
- # [07:30] <Hixie> if you're talking about events, rather than methods, then there's nothing being phased out, it's just not something that's been specced
- # [07:30] <Hixie> maybe it should be
- # [07:31] <Hixie> in which case figure out what the browsers do (especially IE) and send feedback to the list
- # [07:31] <Hixie> (or file a bug)
- # [07:31] <dydz> Hixie: I'm taking about events
- # [07:31] <dydz> Hixie: In particular, suppose you set a web page with an <input type="text"> in an <iframe> (just like the test case)
- # [07:31] <Hixie> k. for the record, "foo()" refers to a foo method, not a foo event :-)
- # [07:32] <dydz> Then, in JavaScript you call input.focus(); window.focus();
- # [07:32] <dydz> where input is the DOM element that corresponds to the <input type="text"> in the <iframe>
- # [07:34] <dydz> Hixie: Then are the events that should be fired: a blur event at the window, a focus event at the <iframe>, a focus event at the <input>?
- # [07:34] <dydz> From what you mentioned above, window.focus() does not fire a focus event at the window
- # [07:35] <Hixie> according to the spec, 'blur' never gets sent to any windows ever. this may be an omission in the spec.
- # [07:35] <Hixie> similarly, according to the spec, 'focus' never gets fired at an iframe, because iframes aren't focusable.
- # [07:36] <Hixie> so the only event the spec says should be fired is 'focus' at the input element
- # [07:36] <Hixie> now it's possible that the spec is wrong
- # [07:36] <Hixie> which you can determine by seeing if all the browsers do the same thing
- # [07:37] <Hixie> if they do, then the spec needs changing
- # [07:37] <Hixie> in which case, send mail and/or file a bug
- # [07:37] * Quits: mjs (mjs@17.246.16.224) (Quit: mjs)
- # [07:44] <dydz> Hixie: On a side note, suppose the user clicks (using a mouse or touch input) the <input type="text"> within the <iframe>, then clicks some part of the background of the page.
- # [07:44] <dydz> Then an focus event would be fired on the <input>, a blur event would be fired on the <input>, and a focus event would be fired on the <body>, right?
- # [07:45] <Hixie> assuming there's a body element, yes
- # [07:45] <Hixie> other events might fire too
- # [07:45] <Hixie> e.g. 'change' on the input
- # [07:45] <dydz> right
- # [07:45] <Hixie> (not to mention the mouse events)
- # [07:45] <pimpbot> changes: mike: build tweak (moved IDs to html element (document element) in multipage output) <http://lists.w3.org/Archives/Public/public-html-diffs/2010Aug/0021.html>
- # [07:47] <dydz> Hixie: For your reference, blur and focus events are fired on user click in both Safari and Firefox.
- # [07:47] <dydz> *blur and focus events on the window are fired
- # [07:47] <Hixie> i'm not able to track feedback right now unfortunately
- # [07:48] <Hixie> if you want me to change the spec please mail the list or file a bug
- # [07:51] <dydz> Hixie: ok. By the way, I put together a test <http://tersk.intudata.com/~dbates/webkit/debug-frame-focus.html> that you could use to see the focus and blur events being fired.
- # [07:51] <Hixie> cool
- # [07:51] <dydz> (if it interests you)
- # [07:52] <Hixie> include it in the mail and i'll look at it when i get to that point in the pile of feedback :-)
- # [07:52] <dydz> Hixie: thanks for you help, ok, I'll look to write an email to the list shortly.
- # [07:52] <Hixie> np, sorry i can't help more right now
- # [07:52] <dydz> I'm not exactly sure of the solution, but I'll at least explain the current state.
- # [07:53] <Hixie> knowing the problem is more useful for me than knowing a solution, fwiw :-)
- # [07:53] <Hixie> i can come up with solutions, coming up with problems is harder :-)
- # [07:56] <dydz> :-)
- # [07:56] <dydz> Hixie: I can come up with problems :P
- # [07:56] <Hixie> excellent :-)
- # [08:25] * Disconnected
- # [08:26] * Attempting to rejoin channel #html-wg
- # [08:26] * Rejoined channel #html-wg
- # [08:26] * Topic is 'Agenda: http://lists.w3.org/Archives/Public/public-html-wg-announce/2010JulSep/0006.html'
- # [08:26] * Set by rubys on Thu Jul 22 17:25:01
- # [08:26] * Quits: krijnh (krijnhoetm@83.160.77.30) (Connection reset by peer)
- # [08:31] * Joins: mjs (mjs@69.181.42.237)
- # [08:53] * Quits: Peter` (peter@85.223.116.170) (Quit: reboot)
- # [09:12] * Joins: Peter (peter@85.223.116.170)
- # [09:13] * Quits: dydz (dydz@76.202.117.247) (Quit: dydz)
- # [09:25] * Quits: Peter (peter@85.223.116.170) (Quit: another reboot)
- # [09:46] <pimpbot> changes: mike: made markup-consistency fix from Dom <http://lists.w3.org/Archives/Public/public-html-diffs/2010Aug/0022.html>
- # [09:55] * Joins: Peter (peter@85.223.116.170)
- # [10:01] * Quits: gavin__ (gavin@99.226.207.11) (Ping timeout)
- # [10:11] * Joins: gavin__ (gavin@99.226.207.11)
- # [10:22] * Quits: bryan_sullivan (bs3131@98.237.176.90) (Connection reset by peer)
- # [10:24] * Quits: mjs (mjs@69.181.42.237) (Quit: mjs)
- # [10:37] * Quits: MikeSmith (MikeSmith@207.192.197.231) (Quit: Till kicked and torn and beaten out he lies, and leaves his hold and crackles, groans, and dies.)
- # [11:02] * Joins: mjs (mjs@69.181.42.237)
- # [11:05] * Quits: Lachy (Lachlan@84.215.59.50) (Quit: This computer has gone to sleep)
- # [11:08] * Quits: mjs (mjs@69.181.42.237) (Quit: mjs)
- # [11:16] <pimpbot> bugmail: [Bug 10296] New: your page is unusable! Freezes firefox 3 on Windows and Mac! <http://lists.w3.org/Archives/Public/public-html-bugzilla/2010Aug/0075.html>
- # [11:19] * Joins: Lachy (Lachlan@213.236.208.22)
- # [11:28] * Quits: Lachy (Lachlan@213.236.208.22) (Quit: Leaving)
- # [11:28] * Joins: Lachy (Lachlan@213.236.208.22)
- # [11:32] * Joins: tlr (tlr@128.30.52.169)
- # [12:47] <pimpbot> bugmail: [Bug 10298] Update the definition of BR from "a line break" to "a text-level thematic break." <http://lists.w3.org/Archives/Public/public-html-bugzilla/2010Aug/0080.html> ** [Bug 10298] New: Update the definition from "a line break" to "a text-level thematic break." <http://lists.w3.org/Archives/Public/public-html-bugzilla/2010Aug/0079.html> ** [Bug 10297] New: Update the definition from "a line break" to "a text-level thematic break.
- # [12:57] * tlr is now known as tlr-bbl
- # [13:06] * Quits: Julian (chatzilla@217.91.35.233) (Client exited)
- # [13:12] * Joins: Julian (chatzilla@217.91.35.233)
- # [13:17] <pimpbot> bugmail: "[Bug 10298] Update the definition of BR from "a line break" to "a text-level thematic break."" (2 messages in thread) <http://lists.w3.org/Archives/Public/public-html-bugzilla/2010Aug/0081.html>
- # [13:56] * Joins: MikeSmith (MikeSmith@207.192.197.231)
- # [14:21] * Joins: plh (plh@128.30.52.28)
- # [14:29] * Joins: aroben (aroben@71.58.77.15)
- # [14:41] * Quits: Yudai (Yudai@121.3.74.109) (Ping timeout)
- # [14:51] * Joins: Yudai (Yudai@121.3.74.109)
- # [15:20] * tlr-bbl is now known as tlr
- # [15:37] * Joins: miketaylr (miketaylr@24.42.95.108)
- # [15:48] * Quits: tlr (tlr@128.30.52.169) (Quit: tlr)
- # [15:53] * Quits: Yudai (Yudai@121.3.74.109) (Ping timeout)
- # [15:54] * Joins: Yudai (Yudai@121.3.74.109)
- # [16:01] * Joins: tinkster (tai@81.2.120.180)
- # [16:09] * Quits: webben (benjamin@173.203.84.17) (Ping timeout)
- # [16:13] * Joins: webben (benjamin@173.203.84.17)
- # [16:17] <pimpbot> bugmail: [Bug 9602] Autofocus attribute. <http://lists.w3.org/Archives/Public/public-html-bugzilla/2010Aug/0082.html>
- # [16:18] * Quits: webben (benjamin@173.203.84.17) (Ping timeout)
- # [16:21] * Joins: webben (benjamin@173.203.84.17)
- # [16:40] * Quits: Yudai (Yudai@121.3.74.109) (Ping timeout)
- # [16:43] * Joins: Yudai (Yudai@124.41.86.93)
- # [16:47] * Joins: kliehm (kliehm@80.146.185.162)
- # [16:48] <pimpbot> bugmail: "[Bug 9602] Autofocus attribute." (5 messages in thread) <http://lists.w3.org/Archives/Public/public-html-bugzilla/2010Aug/0086.html>
- # [17:00] * Joins: Cesarino (Cesarino@83.101.13.54)
- # [17:01] * Joins: Stevef (chatzilla@82.44.68.200)
- # [17:07] <Cesarino> Hi all
- # [17:08] <Cesarino> how do you set a video background with html5?
- # [17:13] <plh> you mean besides using css?
- # [17:16] <Cesarino> using the css
- # [17:16] <Cesarino> 3
- # [17:17] <plh> using css, the video element doesn't differ from others. of course, unless you make your video transparent, you won't see much of the background
- # [17:18] <Cesarino> you must set the video tag before the div#container?
- # [17:20] <plh> to be honest, I don't know what you're trying to do so it's difficult to answer
- # [17:21] <Cesarino> ok, sorry
- # [17:21] * Joins: J_Voracek (irchon@166.205.8.148)
- # [17:21] * Quits: J_Voracek (irchon@166.205.8.148) (Client exited)
- # [17:23] <Cesarino> I mean, something like this? <video url> </video> <div id=container></div>
- # [17:23] <plh> you don't need to have a div@container to use the video tag
- # [17:23] <plh> s/@/#/
- # [17:24] <Cesarino> ok
- # [17:24] <plh> if you want to have a border around your video, you can use css and set the border at whatever size you want
- # [17:25] <plh> you can also increase the padding, and set a background color
- # [17:27] <Cesarino> But i want a video in the background, and a site on that..., like:
- # [17:28] <plh> oh, I see, that's different
- # [17:28] <plh> then use absolute positioning on your video
- # [17:28] <plh> and set the <video> tag before your container
- # [17:29] * Joins: anne (annevk@213.236.208.247)
- # [17:29] <Cesarino> ah
- # [17:30] <plh> sorry, was slow to get what you were looking for
- # [17:30] <Cesarino> :-)
- # [17:30] <Cesarino> gona try that
- # [17:36] * Quits: tinkster (tai@81.2.120.180) (Ping timeout)
- # [17:48] <pimpbot> bugmail: "[Bug 9602] Autofocus attribute." (6 messages in thread) <http://lists.w3.org/Archives/Public/public-html-bugzilla/2010Aug/0087.html>
- # [17:54] * Joins: adrianba (adrianba@131.107.0.98)
- # [17:56] * Quits: arronei (arronei@131.107.0.84) (Client exited)
- # [17:56] * Joins: arronei (arronei@131.107.0.71)
- # [17:59] * Quits: kliehm (kliehm@80.146.185.162) (Quit: ChatZilla 0.9.86 [Firefox 3.6.8/20100722155716])
- # [18:00] * Joins: rubys (rubys@98.27.59.221)
- # [18:00] * Joins: janina (janina@66.92.170.178)
- # [18:00] * Joins: Zakim (rrs-bridgg@128.30.52.169)
- # [18:00] * Joins: dsinger (dsinger@67.218.106.59)
- # [18:00] <rubys> zakim, this will be html_wg
- # [18:00] <janina> zakim, call janina
- # [18:00] <Zakim> ok, rubys, I see HTML_WG()12:00PM already started
- # [18:00] <Zakim> ok, janina; the call is being made
- # [18:00] <Zakim> +Janina
- # [18:00] <rubys> trackbot, start meeting
- # [18:00] * trackbot is preparing a teleconference
- # [18:00] <trackbot> RRSAgent, make logs public
- # [18:00] <RRSAgent> I have made the request, trackbot
- # [18:01] <trackbot> Zakim, this will be html_wg
- # [18:01] <Zakim> ok, trackbot, I see HTML_WG()12:00PM already started
- # [18:01] <trackbot> Meeting: HTML Weekly Teleconference
- # [18:01] <trackbot> Date: 05 August 2010
- # [18:01] <dsinger> zakim, mute dsinger
- # [18:01] <Zakim> dsinger should now be muted
- # [18:01] <Zakim> +[Microsoft]
- # [18:01] <dsinger> zakim, who is here?
- # [18:01] <Zakim> On the phone I see dsinger (muted), Janina, [Microsoft]
- # [18:01] <Zakim> On IRC I see dsinger, Zakim, janina, rubys, arronei, adrianba, anne, Stevef, Cesarino, Yudai, webben, miketaylr, aroben, plh, MikeSmith, Julian, Lachy, gavin__, Peter, krijn, karl,
- # [18:01] <Zakim> ... tH, Martijnc, shepazu, laplink, jwm, hober, jmb, Shunsuke, johndrinkwater, CIA-1, inimino, drry, RRSAgent, trackbot, hsivonen, gavin_, Slaanesh, Philip, gsnedders, ed_work,
- # [18:01] * plh zakim, call plh-work
- # [18:01] <Zakim> ... scotfl, Hixie, jgraham, pimpbot, phenny
- # [18:01] * Zakim ok, plh; the call is being made
- # [18:01] <Zakim> +Plh
- # [18:01] <Zakim> +[Microsoft.a]
- # [18:01] * Joins: paulc (qw3birc@128.30.52.28)
- # [18:02] <Zakim> +Sam
- # [18:02] <Zakim> + +49.251.280.aaaa
- # [18:02] <adrianba> zakim, [Microsoft.a] has adrianba, krisk
- # [18:02] <Zakim> +adrianba, krisk; got it
- # [18:02] * Quits: Stevef (chatzilla@82.44.68.200) (Quit: ChatZilla 0.9.86 [Firefox 3.6.8/20100722155716])
- # [18:02] <Julian> Zakim, how could you forget?
- # [18:02] <Zakim> I don't understand your question, Julian.
- # [18:02] <adrianba> ScribeNick: adrianba
- # [18:02] <Julian> Zakim, +49.251.280.aaaa is me
- # [18:02] <Zakim> +Julian; got it
- # [18:02] <adrianba> Agenda: http://lists.w3.org/Archives/Public/public-html-wg-announce/2010JulSep/0012.html
- # [18:02] <pimpbot> Title: {agenda} HTML WG telecon 2010-08-04 [task force week] from Sam Ruby on 2010-08-04 (public-html-wg-announce@w3.org from July to September 2010) (at lists.w3.org)
- # [18:02] <adrianba> Chair: Sam Ruby
- # [18:03] <adrianba> Scribe: Adrian Bateman
- # [18:03] * Joins: Mark (qw3birc@128.30.52.28)
- # [18:03] * Joins: HTML (eliot@131.107.0.84)
- # [18:03] <paulc> zakim, who is on the call?
- # [18:03] <Zakim> On the phone I see dsinger (muted), Janina, [Microsoft], Plh, [Microsoft.a], Sam, Julian
- # [18:03] <Zakim> [Microsoft.a] has adrianba, krisk
- # [18:04] * dsinger we are silent? Or I have phone issues?
- # [18:04] <paulc> zakim, [Microsoft] has paulc
- # [18:04] <Zakim> +paulc; got it
- # [18:04] * Quits: Lachy (Lachlan@213.236.208.22) (Quit: This computer has gone to sleep)
- # [18:04] * dsinger thx
- # [18:04] <Zakim> +Cynthia_Shelly
- # [18:04] <Zakim> +Radhika_Roy
- # [18:05] * Joins: krisk (836b004b@128.30.52.43)
- # [18:05] * dsinger top of the mornin to all
- # [18:06] * plh zakim, who is on the phone?
- # [18:06] * Zakim sees on the phone: dsinger (muted), Janina, [Microsoft], Plh, [Microsoft.a], Sam, Julian, Cynthia_Shelly, Radhika_Roy
- # [18:06] * Zakim [Microsoft] has paulc
- # [18:06] * Zakim [Microsoft.a] has adrianba, krisk
- # [18:07] <Zakim> -Cynthia_Shelly
- # [18:07] <Zakim> +Cynthia_Shelly
- # [18:07] <adrianba> TOPIC: ACTION items due by Thursday, Aug 5
- # [18:07] <adrianba> ACTION-184?
- # [18:07] * trackbot getting information on ACTION-184
- # [18:07] <trackbot> ACTION-184 -- Paul Cotton to ensure that someone in the WG is testing the new @rel registry setup by IANA -- due 2010-08-05 -- OPEN
- # [18:07] <trackbot> http://www.w3.org/html/wg/tracker/actions/184
- # [18:07] <pimpbot> Title: ACTION-184 - HTML Weekly Tracker (at www.w3.org)
- # [18:07] <adrianba> paulc: haven't done anything on this because soon after the call maciej continued the mail thread
- # [18:08] <adrianba> ...and pointed julian at registration attempt
- # [18:08] <Julian> q+
- # [18:08] * Zakim sees Julian on the speaker queue
- # [18:08] <adrianba> ...this seems to be continuing on the list
- # [18:08] <adrianba> ...it's not obvious whether we have consensus about whether the attempt was valid
- # [18:08] <adrianba> ...but someone is trying out the system
- # [18:08] <adrianba> rubys: should close the action and consider opening others
- # [18:09] <rubys> ack next
- # [18:09] * Zakim sees Julian at the head of the speaker queue
- # [18:09] * Zakim sees no one on the speaker queue
- # [18:09] * Joins: mjs (mjs@69.181.42.237)
- # [18:09] <adrianba> julian: i asked for making progress a few weeks ago but it doesn't appear that we have made progress
- # [18:09] <Zakim> +[Microsoft.aa]
- # [18:09] <Zakim> -Cynthia_Shelly
- # [18:09] <HTML> zakim, [Microsoft.aa] is me
- # [18:09] <Zakim> +HTML; got it
- # [18:09] <Zakim> + +1.415.595.aabb
- # [18:10] <Zakim> - +1.415.595.aabb
- # [18:10] <adrianba> rubys: sounds like action 184 is closed and next action is call for consensus
- # [18:10] <Zakim> +Cynthia_Shelly
- # [18:10] <adrianba> julian: that's good
- # [18:10] <adrianba> paulc: that's an implicit call on the chairs for action
- # [18:10] <Zakim> + +1.415.595.aacc
- # [18:10] <rubys> close action-184
- # [18:10] * trackbot attempting to close ACTION-184.
- # [18:10] <trackbot> ACTION-184 Ensure that someone in the WG is testing the new @rel registry setup by IANA closed
- # [18:10] <adrianba> ...i took the action when i was in the chair to make sure we pushed this forward
- # [18:10] <adrianba> rubys: and maciej helped with this too
- # [18:10] * janina I need to step away for just a minute ... ...
- # [18:10] <adrianba> TOPIC: New Issues This Week
- # [18:11] <adrianba> rubys: None
- # [18:11] <adrianba> TOPIC: Working Group decisions
- # [18:11] * dsinger who is HTML at Microsoft?
- # [18:11] <adrianba> rubys: believe close to decision on issue 30
- # [18:11] <adrianba> ISSUE-30?
- # [18:11] * trackbot getting information on ISSUE-30
- # [18:11] <trackbot> ISSUE-30 -- Should HTML 5 include a longdesc attribute for images -- open
- # [18:11] <trackbot> http://www.w3.org/html/wg/tracker/issues/30
- # [18:11] <pimpbot> Title: ISSUE-30 - HTML Weekly Tracker (at www.w3.org)
- # [18:11] <adrianba> rubys: the rest are being worked on
- # [18:11] <adrianba> rubys: questions?
- # [18:11] <adrianba> TOPIC: Items Closing This Week
- # [18:11] <adrianba> rubys: None
- # [18:11] <adrianba> TOPIC: Items Closing Next Week
- # [18:12] <adrianba> ISSUE-41?
- # [18:12] * trackbot getting information on ISSUE-41
- # [18:12] <trackbot> ISSUE-41 -- Decentralized extensibility -- open
- # [18:12] <trackbot> http://www.w3.org/html/wg/tracker/issues/41
- # [18:12] <pimpbot> Title: ISSUE-41 - HTML Weekly Tracker (at www.w3.org)
- # [18:12] <adrianba> rubys: paul put out a call for advocates so we can reduce the number of proposals if possible
- # [18:12] <adrianba> ...the mailing list is active on this
- # [18:12] * Quits: dsinger (dsinger@67.218.106.59) (Quit: Rooms • iPhone IRC Client • http://www.roomsapp.mobi)
- # [18:12] <Zakim> -Cynthia_Shelly
- # [18:12] <adrianba> paulc: i made the call for advocates to end at the end of next week
- # [18:12] <Zakim> +Cynthia_Shelly
- # [18:12] <adrianba> ...wanted to do it for longer than one week in case people are away given it is summer
- # [18:13] <adrianba> ISSUE-89?
- # [18:13] * trackbot getting information on ISSUE-89
- # [18:13] <trackbot> ISSUE-89 -- Remove Section 4.12 Common Idioms without dedicated Elements -- open
- # [18:13] <trackbot> http://www.w3.org/html/wg/tracker/issues/89
- # [18:13] <pimpbot> Title: ISSUE-89 - HTML Weekly Tracker (at www.w3.org)
- # [18:13] <adrianba> ISSUE-92?
- # [18:13] * trackbot getting information on ISSUE-92
- # [18:13] <trackbot> ISSUE-92 -- Re-write the Table section to remove extraneous material, and provide cleaner description -- open
- # [18:13] <trackbot> http://www.w3.org/html/wg/tracker/issues/92
- # [18:13] <pimpbot> Title: ISSUE-92 - HTML Weekly Tracker (at www.w3.org)
- # [18:13] <adrianba> rubys: made a request that these proposals be updated
- # [18:13] <adrianba> ...see that this has been done but yet to review them
- # [18:13] <adrianba> ISSUE-110?
- # [18:13] * trackbot getting information on ISSUE-110
- # [18:13] <trackbot> ISSUE-110 -- Change Control for text/html-sandboxed media type -- open
- # [18:13] <trackbot> http://www.w3.org/html/wg/tracker/issues/110
- # [18:13] <pimpbot> Title: ISSUE-110 - HTML Weekly Tracker (at www.w3.org)
- # [18:13] <adrianba> rubys: actually has a month but people should be aware of this
- # [18:13] <adrianba> ...if people are interested they can work on this
- # [18:13] <adrianba> TOPIC: Current WG Surveys
- # [18:14] <adrianba> ISSUE-100?
- # [18:14] * trackbot getting information on ISSUE-100
- # [18:14] <trackbot> ISSUE-100 -- Remove the srcdoc attribute from the HTML5 specification -- open
- # [18:14] <trackbot> http://www.w3.org/html/wg/tracker/issues/100
- # [18:14] <pimpbot> Title: ISSUE-100 - HTML Weekly Tracker (at www.w3.org)
- # [18:14] * janina I'm back ..
- # [18:14] <adrianba> rubys: new survey started yesterday for one week
- # [18:14] <rubys> http://www.w3.org/2002/09/wbs/40318/issue-100-objection-poll/
- # [18:14] <adrianba> rubys: everyone who wants to participate is encouraged to do so
- # [18:14] <adrianba> TOPIC: Task Force Reports - Accessibility Task Force
- # [18:15] <adrianba> janina: got a couple of things going on where it seems there are issues beyond the task force's ability to make progress
- # [18:15] <adrianba> ...we're discussing this and maciej has been meeting with some a11y tf people
- # [18:15] <adrianba> ...aria mapping is moving forward into a better state
- # [18:15] <adrianba> ...looks like this will take another couple of weeks to emerge in a more acceptable form
- # [18:16] <adrianba> ...the second issue is about canvas
- # [18:16] <adrianba> ...we have put forth a proposal about canvas that isn't fully acceptable to some people in the wg
- # [18:16] <adrianba> ...it's about focus ring, caret, and selection
- # [18:16] <adrianba> ...these are different on different OS
- # [18:16] <adrianba> ...which is problematic and it's not clear how to resolve
- # [18:17] <adrianba> ...may be a philosophical difference of opinion
- # [18:17] <adrianba> ...need to discuss how to move forward towards a resolution
- # [18:17] * HTML is now known as eliot
- # [18:17] <adrianba> ...that's forthcoming and we should plan to discuss on monday
- # [18:17] <adrianba> ...for drag and drop we're also somewhat blocked but we need responses from browser developers
- # [18:17] <adrianba> ...we have people committed to find us someone to work with
- # [18:17] <adrianba> ...on all these we're moving slower because of people away on vacation
- # [18:18] <adrianba> ...progress is happening but slower because it is august
- # [18:18] * Joins: dsinger (dsinger@17.197.20.4)
- # [18:18] <adrianba> ...on media when we met last week with chairs we talked about announcing to the wider group the availability of our user requirements
- # [18:18] <Zakim> +[Apple]
- # [18:18] <dsinger> zakim, [apple] has dsinger
- # [18:18] <Zakim> +dsinger; got it
- # [18:18] <adrianba> ...we want the main issue about timing to be discussed more widely than the tf
- # [18:18] <Zakim> -dsinger
- # [18:19] <adrianba> ...i was asked not to do that until the last edits have gone in
- # [18:19] <adrianba> ...hopefully this will be done fairly soon, hopefully before this meeting next week
- # [18:19] <adrianba> ...we know we have many different representations necessary, primary and then alternatives for different audiences
- # [18:19] <adrianba> ...we need to keep these appropriately synchronised even if they're not the same length
- # [18:20] <adrianba> ...we need to get this discussion out more widely
- # [18:21] <adrianba> TOPIC: Task Force Reports - Testing Task Force
- # [18:21] <adrianba> krisk: met last week as planned and will meet again 8/10
- # [18:21] <krisk> Notes -> http://www.w3.org/2010/07/27-htmlt-minutes.html
- # [18:21] <pimpbot> Title: SV_MEETING_TITLE -- 27 Jul 2010 (at www.w3.org)
- # [18:21] <adrianba> ...we approved 50 of the canvas tests and more are being reviewed
- # [18:22] <adrianba> ...some discussion about webidl and ability to delete dom objects
- # [18:22] <adrianba> ...decided they should not be deletable
- # [18:22] <adrianba> ...anne submitted tests for getElementsByClassName
- # [18:22] <adrianba> ...also james graham has been updating test harness to integrate new automated tests
- # [18:23] <adrianba> ...automated instead of manual
- # [18:23] <adrianba> ...updated test runner to generate results in xml
- # [18:23] <adrianba> ...it might move to json - we're discussing this
- # [18:23] <krisk> I created set of conformance reports http://test.w3.org/html/tests/reporting/report.htm
- # [18:23] <pimpbot> Title: HTML5 Conformance Test Results (at test.w3.org)
- # [18:23] <adrianba> ...conformance reports using the xml format across some different user agents
- # [18:23] <adrianba> ...we'd like other vendors to submit/update results
- # [18:24] <adrianba> ...even though it's summer lots of things going on
- # [18:24] <adrianba> ...that's it for today
- # [18:24] <paulc> Q+
- # [18:24] * Zakim sees paulc on the speaker queue
- # [18:24] <rubys> ack next
- # [18:24] * Zakim sees paulc at the head of the speaker queue
- # [18:24] * Zakim sees no one on the speaker queue
- # [18:24] <adrianba> paul: kris, you just asked for other vendors to get engaged - am i to take it that microsoft and opera are engaged but who else?
- # [18:25] <adrianba> krisk: there's a few independents who chime in from time to time
- # [18:25] <adrianba> ...but nothing really consistently from other browser vendors
- # [18:25] <adrianba> paul: i was trying to open up the link to the report.htm and i'm having trouble viewing it
- # [18:26] <adrianba> ...is it supposed to give results for different runs of the suite?
- # [18:26] <krisk> http://test.w3.org/html/tests/harness/harness.htm
- # [18:26] <adrianba> krisk: yes, if you go through the test runner
- # [18:26] <adrianba> ...and pass or fail all the tests then at the end you can generate results and it gives xml
- # [18:26] <adrianba> ...which can be submitted to hg
- # [18:27] <adrianba> ...if it's a new user agent it will show up on the report table
- # [18:27] <adrianba> paul: how are you controlling who can submit
- # [18:27] <adrianba> krisk: currently you can submit to hg - we'll see what happens and will manage it
- # [18:27] <adrianba> ...it's all audited through hg
- # [18:27] <adrianba> ...we want browser vendors to submit their own results
- # [18:28] <adrianba> paul: that's what i'm concerned about - i'm curious if plh has comments
- # [18:28] <adrianba> plh: i like what i'm seeing
- # [18:28] <adrianba> paul: i do too
- # [18:28] <adrianba> TOPIC: Misc items
- # [18:28] * Julian where can I get that modern browser?
- # [18:28] <adrianba> rubys: decision policy update
- # [18:29] <adrianba> mjs: there is one small drafting task left and then we will want review
- # [18:29] <adrianba> ...there's been a large number of bugs dealt with
- # [18:29] <adrianba> rubys: questions?
- # [18:29] <adrianba> rubys: HTML WG status
- # [18:29] <adrianba> ...done one back in March
- # [18:29] <adrianba> paul: continue to work on this
- # [18:30] <adrianba> ...plh did one for an AB meeting in early july
- # [18:30] <adrianba> ...believe another AB meeting coming up
- # [18:30] <adrianba> ...don't think plh got to present last report
- # [18:30] <adrianba> ...are the slides public?
- # [18:30] <adrianba> plh: believe so
- # [18:30] <plh> --> http://www.w3.org/2010/Talks/0715-html-plh/Overview.html HTML5 Update
- # [18:30] <pimpbot> Title: HTML 5 Update (at www.w3.org)
- # [18:30] <adrianba> paul: need to get this level of information directly to the AC
- # [18:30] <adrianba> ...need to finish drafting this alongside the information plh has
- # [18:31] <adrianba> ...definitely on my to do list
- # [18:31] <adrianba> rubys: questions?
- # [18:31] <adrianba> TOPIC: Other business
- # [18:31] <adrianba> rubys: floor is open
- # [18:31] <adrianba> TOPIC: Scribe for next meeting
- # [18:31] <adrianba> rubys: maciej is chairing, volunteers?
- # [18:31] <adrianba> ...plh has volunteered
- # [18:31] <adrianba> TOPIC: Adjournment
- # [18:32] <Zakim> -Cynthia_Shelly
- # [18:32] <adrianba> rubys: adjourned, thanks everyone
- # [18:32] <Zakim> -[Apple]
- # [18:32] <Zakim> -Plh
- # [18:32] <Zakim> -Julian
- # [18:32] <Zakim> -Sam
- # [18:32] <Zakim> - +1.415.595.aacc
- # [18:32] * Quits: Mark (qw3birc@128.30.52.28) (Quit: Page closed)
- # [18:32] <Zakim> -Janina
- # [18:32] * Parts: janina (janina@66.92.170.178)
- # [18:32] <Zakim> -HTML
- # [18:32] * Quits: dsinger (dsinger@17.197.20.4) (Quit: dsinger)
- # [18:32] <Zakim> -Radhika_Roy
- # [18:32] <Zakim> -[Microsoft.a]
- # [18:32] * Quits: eliot (eliot@131.107.0.84) (Quit: A day without sunshine is like .... night)
- # [18:32] * Quits: krisk (836b004b@128.30.52.43) (Quit: CGI:IRC)
- # [18:32] <adrianba> rrsagent, make minutes
- # [18:32] <RRSAgent> I have made the request to generate http://www.w3.org/2010/08/05-html-wg-minutes.html adrianba
- # [18:33] <adrianba> rrsagent, make logs public
- # [18:33] <RRSAgent> I have made the request, adrianba
- # [18:43] <Zakim> -[Microsoft]
- # [18:43] <Zakim> HTML_WG()12:00PM has ended
- # [18:43] <Zakim> Attendees were dsinger, Janina, Plh, Sam, adrianba, krisk, Julian, paulc, Cynthia_Shelly, Radhika_Roy, [Microsoft], HTML, +1.415.595.aabb, +1.415.595.aacc
- # [18:43] <adrianba> rrsagent, make minutes
- # [18:43] <RRSAgent> I have made the request to generate http://www.w3.org/2010/08/05-html-wg-minutes.html adrianba
- # [18:43] <pimpbot> Title: HTML Weekly Teleconference -- 05 Aug 2010 (at www.w3.org)
- # [18:49] * Quits: adrianba (adrianba@131.107.0.98) (Quit: Bye!)
- # [18:51] * Quits: paulc (qw3birc@128.30.52.28) (Quit: paulc)
- # [18:56] * Joins: J_Voracek (irchon@166.205.9.112)
- # [18:56] * Quits: J_Voracek (irchon@166.205.9.112) (Client exited)
- # [19:00] * Joins: J_Voracek (irchon@166.205.9.197)
- # [19:03] * Quits: J_Voracek (irchon@166.205.9.197) (Client exited)
- # [19:58] * Joins: tlr (tlr@128.30.52.169)
- # [20:04] * Joins: J_Voracek (irchon@166.205.11.206)
- # [20:04] * Quits: J_Voracek (irchon@166.205.11.206) (Client exited)
- # [20:10] * Quits: tlr (tlr@128.30.52.169) (Quit: tlr)
- # [20:17] * Joins: tinkster (tai@81.2.120.180)
- # [20:22] * Quits: tinkster (tai@81.2.120.180) (Ping timeout)
- # [20:26] <Cesarino> have a question about video tag
- # [20:27] <Cesarino> witch video codec supports firefox and explorer?
- # [20:29] <Hixie> none today
- # [20:29] <Hixie> firefox currently supports Theora and WebM, I believe
- # [20:30] <Hixie> IE currently supports nothing; IE9 demos I believe support whatever you have locally installed which is presumably h.264 by default, but I could be wrong
- # [20:31] <Cesarino> i read something with IE a script for the video tag on google code could help. I tried ogg format for firefox, but doesn't work. :-(
- # [20:31] <plh> hu, ogg should work in firefox
- # [20:31] <plh> which version do you have?
- # [20:31] <Cesarino> firefox? 3.6
- # [20:31] <plh> yep, ought to work
- # [20:32] <plh> try this: http://test.w3.org/html/examples/elements/video/video02.html
- # [20:32] <pimpbot> Title: Video example (at test.w3.org)
- # [20:33] <plh> for WebM, you'll need firefox 4 (only in beta)
- # [20:36] <Cesarino> could it be that VLC player is a bad transcode prog?
- # [20:37] <plh> if you use an http server, it could be the media type
- # [20:38] <plh> if you don't use an http server, then yes, it may be vlc but I'd be surprised if it was the case
- # [20:40] <Cesarino> it's vlc, or i'm doing somthing wrong
- # [20:41] <plh> ffmpeg2theora will do a fine job at converting your video
- # [20:45] * Zakim excuses himself; his presence no longer seems to be needed
- # [20:45] * Parts: Zakim (rrs-bridgg@128.30.52.169)
- # [20:48] <pimpbot> bugmail: "[Bug 9602] Autofocus attribute." (7 messages in thread) <http://lists.w3.org/Archives/Public/public-html-bugzilla/2010Aug/0088.html>
- # [20:49] * Joins: Lachy (Lachlan@84.215.59.50)
- # [21:10] * Quits: mjs (mjs@69.181.42.237) (Quit: mjs)
- # [21:18] * Joins: tinkster (tai@81.2.120.180)
- # [21:34] * Quits: Lachy (Lachlan@84.215.59.50) (Quit: Leaving)
- # [21:35] * Joins: Lachy (Lachlan@84.215.59.50)
- # [21:43] <pimpbot> planet: IE9 Platform Preview 4 <http://intertwingly.net/blog/2010/08/05/IE9-Platform-Preview-4>
- # [22:16] * Joins: mjs (mjs@17.246.16.203)
- # [22:24] * Quits: Martijnc (Martijnc@91.176.55.99) (Connection reset by peer)
- # [22:30] * Joins: Martijnc (Martijnc@91.176.201.115)
- # [22:43] <pimpbot> planet: The HTML5 Parsing Algorithm <http://webkit.org/blog/1273/the-html5-parsing-algorithm/>
- # [22:43] <Cesarino> have a problem with video tag, I want to get it work in IE8, is it possible?
- # [22:44] <plh> nope
- # [22:45] <plh> you need to use a fallback
- # [22:45] <Cesarino> also not with script?
- # [22:45] <Cesarino> a
- # [22:45] <plh> not even with script, unless your script just do a fallback as well
- # [22:45] <plh> so, there is no real advantage of using script here
- # [22:46] <Cesarino> ok
- # [22:47] <Cesarino> now i don't understand fallback :-)
- # [22:50] <Cesarino> you mean linking to a script, like this? script src="http://html5media.googlecode.com/svn/trunk/src/html5media.min.js"
- # [22:51] <plh> something like that http://camendesign.com/code/video_for_everybody
- # Session Close: Fri Aug 06 00:00:00 2010
The end :)