Apply black instread of transparent to background color after below patch is merged.
(https://review.tizen.org/gerrit/#/c/platform/framework/web/chromium-efl/+/226493/)
That patch made proper background color. so change background color to explicitly
set transparent color.
Change-Id: I6c8b818cc9da243abc4b50975c7d84f779a0e7ae
Signed-off-by: SangYong Park <sy302.park@samsung.com>
this.accessiblePath = (wrt.tv ? wrt.tv.getAccessiblePath() : null);
this.isAlwaysReload = (wrt.tv ? wrt.tv.isAlwaysReload() : false);
this.multitaskingSupport = (wrt.tv ? wrt.tv.getMultitaskingSupport() : true);
- this.defaultBackgroundColor = (wrt.tv
- || (wrt.getPlatformType() === "product_wearable") ? '#000' : '#FFF');
+ this.defaultBackgroundColor = (wrt.tv ? '#0000' :
+ ((wrt.getPlatformType() === "product_wearable") ? '#000' : '#FFF'));
this.defaultTransparent = (wrt.tv ? true : false);
this.loadFinished = false;
this.runningStatus = 'none';