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

Unified Diff: third_party/WebKit/LayoutTests/editing/execCommand/insert-paragraph-into-table.html

Issue 1820773002: getComputedStyle() should return used value for 'line-height' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/editing/execCommand/insert-paragraph-into-table.html
diff --git a/third_party/WebKit/LayoutTests/editing/execCommand/insert-paragraph-into-table.html b/third_party/WebKit/LayoutTests/editing/execCommand/insert-paragraph-into-table.html
index 8727d5e0aa427925c7317ef6d30168f4a06e68d4..053bed52e48fa8fc044e247ab26efbae23341dc3 100644
--- a/third_party/WebKit/LayoutTests/editing/execCommand/insert-paragraph-into-table.html
+++ b/third_party/WebKit/LayoutTests/editing/execCommand/insert-paragraph-into-table.html
@@ -12,6 +12,6 @@ test(function() {
selection.collapse(sample, 2);
selection.extend(document.querySelector('rt').firstChild, 1);
document.execCommand('InsertParagraph');
- assert_equals(sample.innerHTML.replace(/\n/g, ''), '<table><tbody><tr><td style="display:inline-block"><ruby><rt>a</rt></ruby></td></tr><tr><font size="1"><br></font></tr></tbody></table>');
+ assert_equals(sample.innerHTML.replace(/\n/g, ''), '<table><tbody><tr><td style="display:inline-block"><ruby><rt>a</rt></ruby></td></tr><tr><font size="1"><span style="line-height: 12px;"><br></span></font></tr></tbody></table>');
});
</script>

Powered by Google App Engine
This is Rietveld 408576698