| 12:40 | <MikeSmith> | ☞ /topic WHATWG: http://www.whatwg.org/ -- logs: http://krijnhoetmer.nl/irc-logs/ & http://logbot.glob.com.au/ -- stats: http://gavinsharp.com/irc/whatwg.html -- Please leave your sense of logic at the door, thanks! |
| 14:55 | smaug____ | wonders what small 'a' means in the "customize" button of Chrome |
| 15:33 | <zewt> | don't suppose there's any way to open a firefox console window for a chrome (browser ui) window |
| 15:34 | <gsnedders> | You have to flip some pref, but yes |
| 15:34 | <gsnedders> | (I can't remember what pref or how.) |
| 15:34 | <zewt> | trying to fix an extension that exploded when I upgraded, and the only way I know to poke at chrome DOM is DOM Explorer, which is pretty bad nowadays |
| 15:35 | <zewt> | it's impossible to search for things related to firefox browser chrome, due to that other browser with a terrible choice of name |
| 15:38 | <zewt> | found https://bugzilla.mozilla.org/show_bug.cgi?id=860672, but that only gives me the javascript console tab, not the whole console window (inspector, etc) |
| 15:57 | <zewt> | had to look to the source to find it, but it's enabling all of devtools.debugger.remote-enabled, devtools.debugger.chrome-enabled and devtools.chrome.enabled, then launching with -jsdebugger |
| 16:07 | <zewt> | ... but it doesn't show anonymous content |
| 18:19 | <abarth> | zewt: it means that it's an "aura" build |
| 18:19 | <abarth> | zewt: you're probably on linux |
| 18:20 | <abarth> | we're switching the underlying toolkit to aura |
| 18:23 | <zewt> | windows, ff28 |
| 18:24 | <zewt> | looks like https://bugzilla.mozilla.org/show_bug.cgi?id=777674 |
| 18:26 | <abarth> | oh, sorry, i meant to direct those messages to smaug____ :) |
| 18:49 | <smaug____> | abarth: ahaa |
| 19:42 | <Ablu> | not sure if this is the right place to ask (if not, please tell me where it is :)): How can i style something out of a <style> tag inside of a shadow dom depending on an hosts attribute? |
| 19:42 | <Ablu> | i tried stuff like :host[open] but that does not seem to work |
| 19:48 | <Ablu> | hm. i should read better: That is, in this context the shadow host has no tagname, ID, classes, or attributes, and the only additional information is has is that the :host pseudo-class matches it. (source: http://dev.w3.org/csswg/css-scoping/#host-element) |
| 19:48 | <Ablu> | so i guess it is simply not possible |
| 19:54 | <Ablu> | well if anyone knows elegant alternatives please let me know :) |
| 23:23 | <TabAtkins> | Ablu: :host([open]) |