[css-font-loading] default value of CSSFontFaceLoadEventInit.fontfaces

The spec defines CSSFontFaceLoadEventInit as:

   dictionary CSSFontFaceLoadEventInit : EventInit {
     sequence<CSSFontFaceRule> fontfaces = null;
   };

but null is not a value of type sequence<CSSFontFaceRule>.  I just fixed 
https://www.w3.org/Bugs/Public/show_bug.cgi?id=25391 so that  you can 
write [] to mean an empty sequence, assuming that you don't want to 
distinguish an empty sequence from a special null value.

Received on Monday, 16 June 2014 06:04:51 UTC