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

Side by Side Diff: pkg/polymer/lib/src/build/generated/messages.html

Issue 589743002: warn if inlining the same css file more than once (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: generate messages.html, update pubspec/changelog for release Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « pkg/polymer/lib/src/build/common.dart ('k') | pkg/polymer/lib/src/build/import_inliner.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 <!-- 2 <!--
3 This file is autogenerated with polymer/tool/create_message_details_page.dart 3 This file is autogenerated with polymer/tool/create_message_details_page.dart
4 --> 4 -->
5 <html> 5 <html>
6 <style> 6 <style>
7 @font-face { 7 @font-face {
8 font-family: 'Montserrat'; 8 font-family: 'Montserrat';
9 font-style: normal; 9 font-style: normal;
10 font-weight: 400; 10 font-weight: 400;
(...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 <div id="polymer_40"><h3>A warning was found while parsing the HTML document <a href="#polymer_40">#40</a></h3> 577 <div id="polymer_40"><h3>A warning was found while parsing the HTML document <a href="#polymer_40">#40</a></h3>
578 <p>The polymer transformer uses a parser that implements the HTML5 spec 578 <p>The polymer transformer uses a parser that implements the HTML5 spec
579 (<code>html5lib</code>). This message reports a 579 (<code>html5lib</code>). This message reports a
580 warning that the parser detected.</p> 580 warning that the parser detected.</p>
581 </div><hr /> 581 </div><hr />
582 582
583 <div id="polymer_41"><h3>Possible flash of unstyled content <a href="#polymer_41 ">#41</a></h3> 583 <div id="polymer_41"><h3>Possible flash of unstyled content <a href="#polymer_41 ">#41</a></h3>
584 <p>Custom element found in document body without an "unresolved" attribute on it or 584 <p>Custom element found in document body without an "unresolved" attribute on it or
585 one of its parents. This means your app probably has a flash of unstyled content 585 one of its parents. This means your app probably has a flash of unstyled content
586 before it finishes loading. See <a href="http://goo.gl/iN03Pj">http://goo.gl/iN0 3Pj</a> for more info.</p> 586 before it finishes loading. See <a href="http://goo.gl/iN03Pj">http://goo.gl/iN0 3Pj</a> for more info.</p>
587 </div><hr />
588
589 <div id="polymer_42"><h3>A css file was inlined multiple times. <a href="#polyme r_42">#42</a></h3>
590 <p>Css files are inlined by default, but if you import the same one in multiple
591 places you probably want to override this behavior to prevent duplicate code.
592 To do this, use the following pattern to update your pubspec.yaml:</p>
593 <pre><code>transformers:
594 - polymer:
595 inline_stylesheets:
596 web/my_file.css: false
597 </code></pre>
598 <p>If you would like to hide this warning and keep it inlined, do the same thing
599 but assign the value to true.</p>
587 </div><hr /></body> 600 </div><hr /></body>
588 </html> 601 </html>
OLDNEW
« no previous file with comments | « pkg/polymer/lib/src/build/common.dart ('k') | pkg/polymer/lib/src/build/import_inliner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698