From: chen Date: Mon, 23 Oct 2023 09:43:59 +0000 (+0800) Subject: [FAMILYHUB][multicolumn,background][fix TSEVEN-6602 and TSEVEN-6606] X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7e7ad02fb39f06ec5094e6208c4bbf67ae308af5;p=test%2Ftct%2Fweb%2Fapi.git [FAMILYHUB][multicolumn,background][fix TSEVEN-6602 and TSEVEN-6606] Change-Id: Iac9f7c9bb47dedd64611507d37ac0e559a5f9b26 Signed-off-by: chen --- diff --git a/common/tct-backgrounds-css3-tests/backgrounds/CSS3BG_border_0point5px_dashed_000.html b/common/tct-backgrounds-css3-tests/backgrounds/CSS3BG_border_0point5px_dashed_000.html index 8f22a05ec..536064ad3 100755 --- a/common/tct-backgrounds-css3-tests/backgrounds/CSS3BG_border_0point5px_dashed_000.html +++ b/common/tct-backgrounds-css3-tests/backgrounds/CSS3BG_border_0point5px_dashed_000.html @@ -50,7 +50,13 @@ Authors: test(function () { div.style[headProp("border")] = "0.5px dashed #000"; var borderWidth = GetCurrentStyle("border-width"); - assert_equals(borderWidth, "1px", "The border-width value"); + var armv8 = tizen.systeminfo.getCapability("http://tizen.org/feature/platform.core.cpu.arch.armv8"); + var arch = tizen.systeminfo.getCapability("http://tizen.org/feature/platform.core.cpu.arch"); + if (armv8 && arch === 'aarch64'){ + assert_equals(borderWidth, "0.5px", "The border-width value"); + }else{ + assert_equals(borderWidth, "1px", "The border-width value"); + } var borderStyle = GetCurrentStyle("border-style"); assert_equals(borderStyle, "dashed", "The border-style value"); var borderColor = GetCurrentStyle("border-color"); diff --git a/common/tct-multicolumn-css3-tests/multicolumn/CSS3Multicolumn_column-rule-width_initial_value.html b/common/tct-multicolumn-css3-tests/multicolumn/CSS3Multicolumn_column-rule-width_initial_value.html index bb3779440..1f602d9e2 100755 --- a/common/tct-multicolumn-css3-tests/multicolumn/CSS3Multicolumn_column-rule-width_initial_value.html +++ b/common/tct-multicolumn-css3-tests/multicolumn/CSS3Multicolumn_column-rule-width_initial_value.html @@ -63,7 +63,11 @@ Authors: var column_rule_width = GetCurrentStyle("columnRuleWidth"); var t = async_test(document.title, {timeout: 500}); t.step(function () { - assert_equals(column_rule_width, "3px", "The div column-rule-width"); + if(ARMV8 && ARCH === 'aarch64'){ + assert_equals(column_rule_width, "1.5px", "The div column-rule-width"); + }else{ + assert_equals(column_rule_width, "3px", "The div column-rule-width"); + } }); t.done(); diff --git a/common/tct-multicolumn-css3-tests/multicolumn/CSS3Multicolumn_column-rule_dashed.html b/common/tct-multicolumn-css3-tests/multicolumn/CSS3Multicolumn_column-rule_dashed.html index 70b4af4fc..776bd1b10 100755 --- a/common/tct-multicolumn-css3-tests/multicolumn/CSS3Multicolumn_column-rule_dashed.html +++ b/common/tct-multicolumn-css3-tests/multicolumn/CSS3Multicolumn_column-rule_dashed.html @@ -39,6 +39,7 @@ Authors: +