Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Side by Side Diff: content/renderer/dom_serializer_browsertest.cc

Issue 117413002: Revert of Disable two DomSerializerTests in preperation of page serializer merge (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/bind.h" 5 #include "base/bind.h"
6 #include "base/command_line.h" 6 #include "base/command_line.h"
7 #include "base/compiler_specific.h" 7 #include "base/compiler_specific.h"
8 #include "base/containers/hash_tables.h" 8 #include "base/containers/hash_tables.h"
9 #include "base/file_util.h" 9 #include "base/file_util.h"
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 889 matching lines...) Expand 10 before | Expand all | Expand 10 after
900 900
901 PostTaskToInProcessRendererAndWait( 901 PostTaskToInProcessRendererAndWait(
902 base::Bind( 902 base::Bind(
903 &DomSerializerTests::SerializeHTMLDOMWithEntitiesInTextOnRenderer, 903 &DomSerializerTests::SerializeHTMLDOMWithEntitiesInTextOnRenderer,
904 base::Unretained(this))); 904 base::Unretained(this)));
905 } 905 }
906 906
907 // Test situation of html entities in attribute value when serializing 907 // Test situation of html entities in attribute value when serializing
908 // HTML DOM. 908 // HTML DOM.
909 // This test started to fail at WebKit r65388. See http://crbug.com/52279. 909 // This test started to fail at WebKit r65388. See http://crbug.com/52279.
910 //
911 // TODO(tiger@opera.com): Disabled in preparation of page serializer merge --
912 // Some attributes are handled differently in the merged serializer.
913 // Bug: http://crbug.com/328354
914 IN_PROC_BROWSER_TEST_F(DomSerializerTests, 910 IN_PROC_BROWSER_TEST_F(DomSerializerTests,
915 DISABLE_SerializeHTMLDOMWithEntitiesInAttributeValue) { 911 SerializeHTMLDOMWithEntitiesInAttributeValue) {
jochen (gone - plz use gerrit) 2013/12/17 19:07:13 ah, right. It should be DISABLED_ (with a D) can
916 // Need to spin up the renderer and also navigate to a file url so that the 912 // Need to spin up the renderer and also navigate to a file url so that the
917 // renderer code doesn't attempt a fork when it sees a load to file scheme 913 // renderer code doesn't attempt a fork when it sees a load to file scheme
918 // from non-file scheme. 914 // from non-file scheme.
919 NavigateToURL(shell(), GetTestUrl(".", "simple_page.html")); 915 NavigateToURL(shell(), GetTestUrl(".", "simple_page.html"));
920 916
921 PostTaskToInProcessRendererAndWait( 917 PostTaskToInProcessRendererAndWait(
922 base::Bind( 918 base::Bind(
923 &DomSerializerTests:: 919 &DomSerializerTests::
924 SerializeHTMLDOMWithEntitiesInAttributeValueOnRenderer, 920 SerializeHTMLDOMWithEntitiesInAttributeValueOnRenderer,
925 base::Unretained(this))); 921 base::Unretained(this)));
(...skipping 13 matching lines...) Expand all
939 base::Bind( 935 base::Bind(
940 &DomSerializerTests:: 936 &DomSerializerTests::
941 SerializeHTMLDOMWithNonStandardEntitiesOnRenderer, 937 SerializeHTMLDOMWithNonStandardEntitiesOnRenderer,
942 base::Unretained(this), file_url)); 938 base::Unretained(this), file_url));
943 } 939 }
944 940
945 // Test situation of BASE tag in original document when serializing HTML DOM. 941 // Test situation of BASE tag in original document when serializing HTML DOM.
946 // When serializing, we should comment the BASE tag, append a new BASE tag. 942 // When serializing, we should comment the BASE tag, append a new BASE tag.
947 // rewrite all the savable URLs to relative local path, and change other URLs 943 // rewrite all the savable URLs to relative local path, and change other URLs
948 // to absolute URLs. 944 // to absolute URLs.
949 // 945 IN_PROC_BROWSER_TEST_F(DomSerializerTests, SerializeHTMLDOMWithBaseTag) {
950 // TODO(tiger@opera.com): Disabled in preparation of page serializer merge --
951 // Base tags are handled a bit different in merged version.
952 // Bug: http://crbug.com/328354
953 IN_PROC_BROWSER_TEST_F(DomSerializerTests,
954 DISABLE_SerializeHTMLDOMWithBaseTag) {
955 base::FilePath page_file_path = GetTestFilePath( 946 base::FilePath page_file_path = GetTestFilePath(
956 "dom_serializer", "html_doc_has_base_tag.htm"); 947 "dom_serializer", "html_doc_has_base_tag.htm");
957 948
958 // Get page dir URL which is base URL of this file. 949 // Get page dir URL which is base URL of this file.
959 base::FilePath dir_name = page_file_path.DirName(); 950 base::FilePath dir_name = page_file_path.DirName();
960 dir_name = dir_name.Append( 951 dir_name = dir_name.Append(
961 base::FilePath::StringType(base::FilePath::kSeparators[0], 1)); 952 base::FilePath::StringType(base::FilePath::kSeparators[0], 1));
962 GURL path_dir_url = net::FilePathToFileURL(dir_name); 953 GURL path_dir_url = net::FilePathToFileURL(dir_name);
963 954
964 // Get file URL. 955 // Get file URL.
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
1011 NavigateToURL(shell(), file_url); 1002 NavigateToURL(shell(), file_url);
1012 1003
1013 PostTaskToInProcessRendererAndWait( 1004 PostTaskToInProcessRendererAndWait(
1014 base::Bind( 1005 base::Bind(
1015 &DomSerializerTests:: 1006 &DomSerializerTests::
1016 SubResourceForElementsInNonHTMLNamespaceOnRenderer, 1007 SubResourceForElementsInNonHTMLNamespaceOnRenderer,
1017 base::Unretained(this), file_url)); 1008 base::Unretained(this), file_url));
1018 } 1009 }
1019 1010
1020 } // namespace content 1011 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698