| Index: LayoutTests/css-parser/scientific-notation.html
|
| diff --git a/LayoutTests/css-parser/scientific-notation.html b/LayoutTests/css-parser/scientific-notation.html
|
| index 290e6a2987f2690aa57bdf15fef9a67e7d022f28..98858f942f80b53b567281226b053f8895798ad1 100644
|
| --- a/LayoutTests/css-parser/scientific-notation.html
|
| +++ b/LayoutTests/css-parser/scientific-notation.html
|
| @@ -52,7 +52,6 @@ assert_valid_value("width", "1e10%", "10000000000%");
|
| assert_valid_value("width", "1e+10%", "10000000000%");
|
| assert_valid_value("width", "1e-10%", "1e-10%");
|
| // Large exponents (not representable). This is not necessarily the correct value.
|
| -assert_valid_value("opacity", "1e600", "0");
|
| assert_valid_value("opacity", "1e-600", "0");
|
| assert_valid_value("width", "1e600px", "0px");
|
| assert_valid_value("width", "1e-600px", "0px");
|
| @@ -63,4 +62,5 @@ assert_invalid_value("width", "1e1.0px");
|
| assert_invalid_value("width", "1e10.0px");
|
| assert_invalid_value("width", "1e1.0em");
|
| assert_invalid_value("width", "1e10.0em");
|
| +assert_invalid_value("opacity", "1e600");
|
| </script>
|
|
|