OLD | NEW |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <img src="data:dsa" data-expected-width=20> | 2 <img src="data:dsa" data-expected-width=20> |
3 <script src="../../resources/check-layout.js"></script> | 3 <script src="../../resources/check-layout.js"></script> |
4 <p>crbug.com/522673: Return the correct width for images with broken data: uri's .</p> | 4 <p>crbug.com/522673: Return the correct width for images with broken data: uri's .</p> |
5 <script> | 5 <script> |
6 checkLayout("img"); | 6 window.onload = function() { |
7 checkLayout("img"); | |
kouhei (in TOK)
2016/06/08 05:09:11
Would you explain this change?
Charlie Harrison
2016/06/08 22:25:50
This is a timing related issue. I think the proble
| |
8 } | |
7 </script> | 9 </script> |
8 | 10 |
9 | 11 |
OLD | NEW |