OLD | NEW |
(Empty) | |
| 1 <h1 class="page_title">Known Issues</h1> |
| 2 <p>Chrome's support for packaged apps is under active development and rapidly |
| 3 evolving, so there are still a few rough edges. Here's a list of known issues |
| 4 in the current <a href="https://tools.google.com/dlpage/chromesxs/">Chrome |
| 5 Canary</a>:</p> |
| 6 <p id="known-issues"></p> |
| 7 <p id="known-issues-error" style="position: absolute; top: -1000px; color: #333;
padding: 1em; background: #eee;"> |
| 8 The list of known issues cannot be loaded at this time. You may be able to |
| 9 see them on the <a href="http://code.google.com/p/chromium/issues/list?q=label
:Hotlist-AppsKnownIssues">Chromium bug tracker</a>. |
| 10 </p> |
| 11 <script> |
| 12 var xhr = new XMLHttpRequest(); |
| 13 xhr.onreadystatechange = function() { |
| 14 if (xhr.readyState != 4) return; |
| 15 if (xhr.status != 200) { |
| 16 // We can't use display none/block, since in that case the error paragraph |
| 17 // would be stripped by the template processor. |
| 18 document.getElementById('known-issues-error').style.position = 'static'; |
| 19 return; |
| 20 } |
| 21 document.getElementById('known-issues').innerHTML = xhr.responseText; |
| 22 }; |
| 23 xhr.open( |
| 24 'GET', 'http://developer.chrome.com/app_known_issues_snippet.html', true); |
| 25 xhr.send(null); |
| 26 </script> |
| 27 <p> |
| 28 If one of the above describes an issue you've run into, and you wish to be |
| 29 updated when it's resolved, click the star icon on the page header. Do not |
| 30 respond to the bug to say "me too" or ask "when will this be fixed?"; such |
| 31 updates can cause hundreds of emails to be sent. Add a comment only if you have |
| 32 information (such as a better test case or a suggested fix) that is likely |
| 33 to be helpful. |
| 34 </p> |
| 35 <h2>Can't find it in the list?</h2> |
| 36 <p> |
| 37 If none of the issues listed above describe what you're running into, you |
| 38 may wish to <a href="http://code.google.com/p/chromium/issues/list?can=2&q=Fea
ture%3DApps+Type%3DBug">search</a> |
| 39 the bug tracker, in case it has been reported but not marked as being known |
| 40 yet. |
| 41 </p> |
| 42 <p> |
| 43 If you still can't find something that matches the problem you're having, you |
| 44 can <a href="https://code.google.com/p/chromium/issues/entry?template=Defect r
eport from user&labels=Feature-Apps,Type-Bug,Area-Internals,Pri-2">report |
| 45 the bug</a> on the Chromium bug tracker. Please include as many details as |
| 46 possible in your bug report, including Chrome version number, operating |
| 47 system, and any other relevant configuration details. Bug reports that attach |
| 48 a small app that exhibits the problem are especially appreciated. |
| 49 </p> |
OLD | NEW |