- 04 Nov, 2014 7 commits
-
-
Rafael Weinstein authored
R=eseidel@chromium.org, abarth BUG= Review URL: https://codereview.chromium.org/705683002
-
Hixie authored
Review URL: https://codereview.chromium.org/685063006
-
Hixie authored
element; an example that uses that example to define some HTMLy elements; and an example to use those HTMLy elements to display a hello world doc. Highly incomplete WIP. Review URL: https://codereview.chromium.org/698293003
-
Hixie authored
that uses it looks nicer; this moves the complexity to places that register elements without using 'class' (e.g. the internals of frameworks that create elements for defining elements) Review URL: https://codereview.chromium.org/699083005
-
Hixie authored
parsed' callback; pass the element's module to the constructor when constructing a custom element (these are rather experimental changes and we may want to go a different way on this stuff) Review URL: https://codereview.chromium.org/701873004
-
Adam Barth authored
In mojom, there's a notion of a request/response pair. This CL teaches the JS bindings not to GC a message pipe after a request has been issued but before the response has been received. R=hansmuller@chromium.org Review URL: https://codereview.chromium.org/696373003
-
Hixie authored
This has the following implications: - There's no createElement() function any more. If you want to create an element from script, you have to use its constructor. - There's no async element registration. The parser will block until all the imports are imported when you use a tag name of a custom element that hasn't been registered yet, in case one of the imports defines it. - If you try to construct a non-registered element in markup, it turns into an <error> element. - <div>, <span>, and <error> are new built-in elements. R=esprehn@chromium.org Review URL: https://codereview.chromium.org/695423004
-
- 03 Nov, 2014 2 commits
-
-
Adam Barth authored
Previously we were using string concatenation to build up the directory listing. Now we fetch some JSON from the server and use data binding to inflate a directory listing. This exmaple doesn't work yet because we're missing support for template@repeat, but hopefully we'll get that soon. Also, added support for setRequestHeader to XMLHttpRequest. R=rafaelw@chromium.org Review URL: https://codereview.chromium.org/688413005
-
Adam Barth authored
This CL is just a search-and-replace. R=esprehn@chromium.org Review URL: https://codereview.chromium.org/694423002
-
- 31 Oct, 2014 3 commits
-
-
Hixie authored
exported and reexported, rename 'interface' to 'class' in the IDL, add constructors to all registered elements R=esprehn@chromium.org Review URL: https://codereview.chromium.org/695043002
-
Rafael Weinstein authored
BUG= R=eseidel@chromium.org Review URL: https://codereview.chromium.org/698653002
-
Hixie authored
R=esprehn@chromium.org Review URL: https://codereview.chromium.org/694613002
-
- 29 Oct, 2014 2 commits
-
-
Hixie authored
Review URL: https://codereview.chromium.org/689763003
-
Hixie authored
Review URL: https://codereview.chromium.org/692563003
-
- 24 Oct, 2014 1 commit
-
-
Hixie authored
Docs: Fix the script in the example to actually clone the template contents, not the template element itself. Review URL: https://codereview.chromium.org/680673002
-
- 23 Oct, 2014 3 commits
-
-
Eric Seidel authored
I had to also register for the text/plain mime-type which turned out to be harder than expected. Mostly due to my confusion with mojo_shell using last-argument-wins argument parsing. R=ianh@google.com Review URL: https://codereview.chromium.org/672363002
-
Hixie authored
R=eseidel@chromium.org Review URL: https://codereview.chromium.org/677513002
-
Adam Barth authored
-