raname backgroundcolor to documentbackgroundcolor
authorhuayong.xu <huayong.xu@samsung.com>
Mon, 12 Apr 2021 02:51:44 +0000 (10:51 +0800)
committerhuiyueun <35286162+huiyueun@users.noreply.github.com>
Tue, 20 Apr 2021 06:13:00 +0000 (15:13 +0900)
src/Tizen.NUI/src/internal/WebView/WebView.cs

index ab93624..de7c33a 100755 (executable)
@@ -750,18 +750,18 @@ namespace Tizen.NUI
         }
 
         /// <summary>
-        /// Background color of web view.
+        /// Background color of document of web page.
         /// </summary>
         [EditorBrowsable(EditorBrowsableState.Never)]
-        public new Color BackgroundColor
+        public Color DocumentBackgroundColor
         {
             get
             {
-                return (Color)GetValue(WebViewBackgroundColorProperty);
+                return (Color)GetValue(DocumentBackgroundColorProperty);
             }
             set
             {
-                SetValue(WebViewBackgroundColorProperty, value);
+                SetValue(DocumentBackgroundColorProperty, value);
                 NotifyPropertyChanged();
             }
         }
@@ -1043,7 +1043,7 @@ namespace Tizen.NUI
             return temp;
         });
 
-        private static readonly BindableProperty WebViewBackgroundColorProperty = BindableProperty.Create(nameof(BackgroundColor), typeof(Vector4), typeof(WebView), true, propertyChanged: (bindable, oldValue, newValue) =>
+        private static readonly BindableProperty DocumentBackgroundColorProperty = BindableProperty.Create(nameof(DocumentBackgroundColor), typeof(Vector4), typeof(WebView), true, propertyChanged: (bindable, oldValue, newValue) =>
         {
             var webview = (WebView)bindable;
             if (newValue != null)