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

Side by Side Diff: lib/components/collapse.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
« no previous file with comments | « lib/components/carousel.html ('k') | lib/components/dropdown.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <element name="x-collapse" extends="div"> 4 <element name="x-collapse" extends="div" constructor="Collapse">
5 <template> 5 <template>
6 <div class='accordion-group'> 6 <div class='accordion-group'>
7 <content select='.accordion-heading'></content> 7 <content select='.accordion-heading'></content>
8 <div class='collapse-body-x'> 8 <div class='collapse-body-x'>
9 <div class='accordion-inner'> 9 <div class='accordion-inner'>
10 <content></content> 10 <content></content>
11 </div> 11 </div>
12 </div> 12 </div>
13 </div> 13 </div>
14 </template> 14 </template>
15 <script type="application/dart" src='collapse.dart'></script> 15 <script type="application/dart" src='collapse.dart'></script>
16 </element> 16 </element>
17 </body> 17 </body>
18 </html> 18 </html>
OLDNEW
« no previous file with comments | « lib/components/carousel.html ('k') | lib/components/dropdown.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698