Re: website copy errors

Thanks for feedback, Dan.
It would be most helpful if you shared the below on the working group’s mailing list <public-webapps@w3.org>.
You can subscribe: <mailto:public-webapps-request@w3.org?subject=subscribe”>
… read the mail archive <http://lists.w3.org/Archives/Public/public-webapps/>

I’m happy to relay your feedback to the group if you prefer, but should anyone want to reply to you, that would be an extra hop away.

Coralie


> On 29 Sep 2016, at 15:46 , Dan Obenhaus <dan.obenhaus@gmail.com> wrote:
> 
> https://www.w3.org/TR/html-imports/
> 
> 5. Extensions to HTMLLinkElement Interface
> 
> An import in the context of the Document of an HTML parser or XML Parser is said to be an import that is blocking scripts if the element was created by that Document's parser, or and the element is a link of type import when the element was created by the parser, and the link is not marked as async, and the the import is yet to be completely loaded, and, the last time the event loop has reached step 1, the element was in that Document, and the user agent hasn't given up on that import yet.
> 
> (1) Clause begins with two conjunctions (either alters meaning): "or and the element" 
> (2) Misleading commas within a list: "loaded, and, the" + "step 1, the"
> 
> https://html.spec.whatwg.org/multipage/scripting.html#the-template-element
> 
> 4.12.3 The template
> <!doctype html>
> <html lang="en">
>  <head>
>   <title>Homework</title>
>  <body>
>   <template id="template"><p>Smile!</p></template>
>   <script>
>    let num = 3;
>    const fragment = document.getElementById('template').content.cloneNode(true);
>    while (num-- > 1) {
>      fragment.firstChild.
> before(fragment.firstChild.cloneNode(true));
>      // Method before() does not exist.
> .
> .
> .

—
Coralie Mercier  -  W3C Marketing & Communications -  http://www.w3.org
mailto:coralie@w3.org +336 4322 0001 http://www.w3.org/People/CMercier/

Received on Thursday, 29 September 2016 14:35:29 UTC