01:04
<bga_>
hi
01:04
<bga_>
can you show me real use of css :first-line ? :)
01:06
<bga_>
i can not imagine real usage of it
01:10
<bga_>
in google i have found only http://answers.oreilly.com/topic/1001-how-to-style-the-first-line-of-a-paragraph-with-an-image/. wierd example
01:53
<dglazkov>
MikeSmith: I sent a message to public-webapps like an hour ago. I don't see it in archives. What gives?
02:02
<bga_>
heh
02:05
<jamesr_>
i don't see it in my inbox either
04:47
<wirepair>
MikeSmith you about?
04:48
<wirepair>
or anyone else from japan by anychance
04:55
<wirepair>
MikeSmith you about now? :)
05:33
<Hixie>
nessy: good luck with the poster thing; i tried to say the same thing you did and got called disablist.
05:34
<nessy>
yeah, I know - others have said the same, too, but maybe not in this many words...
22:39
<bga_>
brendaneich hi
22:40
<bga_>
do you plan remove `__proto__` as own property of any object?
22:41
<bga_>
i think any object should be clean by default
22:42
<bga_>
we should avoid any __magics__
22:42
<Dashiva>
That's a matter of enumeration, not existence
22:44
<bga_>
Dashiva `var cache = {}; var _fn = function(name){ if(cache.hasOwnProperty(name)) return cache[name]; ... }; _fn('__proto__')`
22:44
<bga_>
its a promlem
22:44
<bga_>
*problem
22:47
<bga_>
vendors should replace __proto__ to Object.mozSetPrototype(obj, pr)
23:59
<AryehGregor>
// For multi-byte values, the optional littleEndian argument
23:59
<AryehGregor>
// indicates whether a big-endian or little-endian value should be
23:59
<AryehGregor>
// read. If false or undefined, a big-endian value is read.
23:59
<AryehGregor>
https://cvs.khronos.org/svn/repos/registry/trunk/public/webgl/doc/spec/TypedArray-spec.html#refsWEBGL
23:59
<AryehGregor>
What could the rationale possibly be for defaulting to big-endian in the real world?