| Index: site/try/src/html_to_text.dart
|
| ===================================================================
|
| --- site/try/src/html_to_text.dart (revision 39366)
|
| +++ site/try/src/html_to_text.dart (working copy)
|
| @@ -32,7 +32,8 @@
|
| // div element.
|
| if (element.classes.contains('dart-code-completion')) return false;
|
|
|
| - return element.getComputedStyle().display != 'inline';
|
| + var display = element.getComputedStyle().display;
|
| + return display != 'inline' && display != 'none';
|
| }
|
|
|
| /// Writes the text of [root] to [buffer]. Keeps track of [selection] and
|
|
|