Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Side by Side Diff: lib/components/accordion.html

Issue 14295009: Fix widget.dart to work with the latest web_ui library. Specifically, query selectors need to use "… (Closed) Base URL: https://github.com/kevmoo/widget.dart.git@master
Patch Set: PTAL Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <element name="x-accordion" extends="div"> 4 <element name="x-accordion" extends="div" constructor="Accordion">
5 <template> 5 <template>
6 <content select='x-collapse'></content> 6 <content select='[is=x-collapse]'></content>
7 </template> 7 </template>
8 <script type="application/dart" src='accordion.dart'></script> 8 <script type="application/dart" src='accordion.dart'></script>
9 </element> 9 </element>
10 </body> 10 </body>
11 </html> 11 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698