You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@weex.apache.org by ta...@apache.org on 2017/04/24 03:51:11 UTC

[37/50] [abbrv] incubator-weex git commit: * [html5] add test for special comment with * in css.

* [html5] add test for special comment with * in css.


Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/88014abf
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/88014abf
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/88014abf

Branch: refs/heads/0.12-dev
Commit: 88014abf3732bcae4fe9d0b06004986b1320cea7
Parents: c10a0f0
Author: MrRaindrop <te...@gmail.com>
Authored: Tue Apr 18 16:21:36 2017 +0800
Committer: MrRaindrop <te...@gmail.com>
Committed: Tue Apr 18 16:21:36 2017 +0800

----------------------------------------------------------------------
 html5/test/render/vue/data/dotvue/scoped-style.vue | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/88014abf/html5/test/render/vue/data/dotvue/scoped-style.vue
----------------------------------------------------------------------
diff --git a/html5/test/render/vue/data/dotvue/scoped-style.vue b/html5/test/render/vue/data/dotvue/scoped-style.vue
index e8ceff8..4ff9dbb 100644
--- a/html5/test/render/vue/data/dotvue/scoped-style.vue
+++ b/html5/test/render/vue/data/dotvue/scoped-style.vue
@@ -7,8 +7,8 @@
 <style scoped>
 .ct {
   display: flex;
-  width: 200px;
-  flex-direction: row;
+  width: 200px; /* width: 100 * 2 - test trimComment */
+  flex-direction: row; /* flex-direction: 2 * 100 - test trimComment */
   transform: translate3d(100px, 100px, 0);
   background-image: linear-gradient(to top, #f5fefd, #ffffff);
 }