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

Unified Diff: LayoutTests/fast/css/calculated-length-as-percent-crash.html

Issue 192603003: ASSERTION FAILED: type() == Percent in WebCore::Length::percent (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@extractedstyle
Patch Set: Trying to fix old chuck mismatch error of the last git cl upload. Created 6 years, 7 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: LayoutTests/fast/css/calculated-length-as-percent-crash.html
diff --git a/LayoutTests/fast/css/calculated-length-as-percent-crash.html b/LayoutTests/fast/css/calculated-length-as-percent-crash.html
new file mode 100644
index 0000000000000000000000000000000000000000..2eeb47a67db2469a93ac26ac96d439fcb2b03442
--- /dev/null
+++ b/LayoutTests/fast/css/calculated-length-as-percent-crash.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+ </script>
+ </head>
+<body>
+ <div>Test for ignoring math expressions involving percentages for width on table cells.
+ </div>
+ <table>
+ <tr>
+ <td colspan="5" style="width: calc(100% + 100px);"/>
+ </tr>
+ </table>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698